Skip to content

Commit

Permalink
Fix import Final type in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nycholas committed Jan 19, 2024
1 parent 401f59c commit 5d9dabb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_types_complex():
S = t.TypeVar('S', int, float)
X = t.TypeVar('X', bound=int)
U = types.Literal[str]
V = types.Final[str]
V = t.Final[str]

assert types.Object.check_type(T)
assert types.Number.check_type(S)
Expand Down

0 comments on commit 5d9dabb

Please sign in to comment.