Skip to content

Commit

Permalink
Fixed test_unpacking_assign() failing on Python 3.7 and 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Mar 15, 2023
1 parent a52c655 commit 24bfa6c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/dummymodule.py
Expand Up @@ -6,6 +6,7 @@
AsyncGenerator,
Callable,
Generator,
Tuple,
Union,
no_type_check,
no_type_check_decorator,
Expand Down Expand Up @@ -197,7 +198,7 @@ def aug_assign() -> int:


@typechecked
def unpacking_assign() -> "tuple[int, str]":
def unpacking_assign() -> Tuple[int, str]:
x: int
y: str
x, y = (1, "foo")
Expand Down

0 comments on commit 24bfa6c

Please sign in to comment.