Removed unused imports.

This commit is contained in:
The Wobbler 2025-03-19 17:45:36 +01:00
parent 35507f267d
commit e7e1d121f9
2 changed files with 3 additions and 3 deletions

View file

@ -2,13 +2,13 @@
from __future__ import annotations
from struct import pack
from tinytag import TinyTag, tinytag
from tinytag import tinytag
from .. import SmallTag
if False:
from collections.abc import Callable, Iterator # noqa
from typing import Any, BinaryIO, Dict, List
from typing import BinaryIO
class _ID3(SmallTag, tinytag._ID3):

View file

@ -6,7 +6,7 @@ from tinytag import tinytag
if False: # just stole this lazy import type hinting trick from tinytag
from collections.abc import Callable, Iterator # noqa
from typing import Any, BinaryIO, Dict, List
from typing import BinaryIO
TinyTag = tinytag.TinyTag
UnsupportedFormatError = tinytag.UnsupportedFormatError