Skip to content

Commit f72dabe

Browse files
Евгений БлиновЕвгений Блинов
authored andcommitted
Add unused-ignore to TypeAlias import ignore
1 parent d55f28c commit f72dabe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metacode/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# TODO: delete this catch blocks and "type: ignore" if minimum supported version of Python is > 3.9.
55
try:
6-
from typing import TypeAlias # type: ignore[attr-defined]
6+
from typing import TypeAlias # type: ignore[attr-defined, unused-ignore]
77
except ImportError: # pragma: no cover
88
from typing_extensions import TypeAlias
99

0 commit comments

Comments
 (0)