diff --git a/smalltag/_formats/_id3.py b/smalltag/_formats/_id3.py index 540e1fe..3a76659 100644 --- a/smalltag/_formats/_id3.py +++ b/smalltag/_formats/_id3.py @@ -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): diff --git a/smalltag/smalltag.py b/smalltag/smalltag.py index fbdcced..31d04ce 100644 --- a/smalltag/smalltag.py +++ b/smalltag/smalltag.py @@ -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