From e7e1d121f907e1ef8dd35a43d5495f41ba40a51c Mon Sep 17 00:00:00 2001 From: The Wobbler Date: Wed, 19 Mar 2025 17:45:36 +0100 Subject: [PATCH] Removed unused imports. --- smalltag/_formats/_id3.py | 4 ++-- smalltag/smalltag.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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