1
0
Fork 0

apply lint

This commit is contained in:
Sean Sube 2023-07-06 18:46:21 -05:00
parent e65de8115e
commit b8c0bb03e8
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
import random
from copy import deepcopy
from logging import getLogger
from math import ceil
from re import Pattern, compile
from typing import Dict, List, Optional, Tuple
from copy import deepcopy
import numpy as np
import torch
@ -406,4 +406,4 @@ def pop_random(list: List[str]) -> str:
"""
i = random.randrange(len(list))
list[i], list[-1] = list[-1], list[i]
return list.pop()
return list.pop()