Skip to content

Commit

Permalink
apply lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Jul 6, 2023
1 parent e65de81 commit b8c0bb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/onnx_web/diffusers/utils.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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()

0 comments on commit b8c0bb0

Please sign in to comment.