Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MikiP98 committed Sep 10, 2024
1 parent e4ebd56 commit 49ea6d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/src/ut_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# coding=utf-8
import os.path

from aenum import auto, IntEnum, unique
from typing import Iterable
from utils import pil_fully_supported_formats, pil_read_only_formats
Expand Down Expand Up @@ -304,7 +302,9 @@ def generate_small_shell_summary(p: str):
for i, entry in enumerate(big_shell_summary_data):
big_shell_summary_data[i] = (entry[0], f"![{entry[0]}]({entry[1]})")

batches: list[tuple[tuple[str, str], tuple[str, str], tuple[str, str], tuple[str, str]] | list[tuple[str, str]]] = []
batches: list[
tuple[tuple[str, str], tuple[str, str], tuple[str, str], tuple[str, str]] | list[tuple[str, str]]
] = []

rest = False
end = None
Expand Down

0 comments on commit 49ea6d8

Please sign in to comment.