Skip to content

Commit 2283cac

Browse files
committed
Fix flake8
1 parent 3f6736d commit 2283cac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from typing import Callable, Generic, TypeVar
2-
from typing_extensions import ParamSpec, TypeAlias, TypeVarTuple, Unpack, reveal_type
1+
from typing import Callable, Generic, TypeVar # noqa: F401
2+
from typing_extensions import ParamSpec, TypeAlias, TypeVarTuple, Unpack, reveal_type # noqa: F401
33

44
T = TypeVar("T", default=int)
55
# T2 = TypeVar("T2", default=Callable[[T], int])
@@ -10,6 +10,7 @@
1010

1111
# reveal_type(Foop[str]()) # TODO should be Foop[str, T3=str, T4=str] not Foop[str, T3=str, T4=T=int | str]
1212

13+
1314
# reveal_type(Foop())
1415
# A = TypeVar("A")
1516
# B = TypeVar("B")

0 commit comments

Comments
 (0)