Skip to content

Commit 9e78a50

Browse files
remove pyright ignore directive for unknown variable type in test_gradual_assignment
1 parent ad8f0d9 commit 9e78a50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/@tests/test_cases/builtins/check_callable.py

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

44
def test_gradual_assignment(arg: Any) -> None:
55
if callable(arg):
6-
_: int = arg() # pyright: ignore[reportUnknownVariableType]
6+
_: int = arg()

0 commit comments

Comments
 (0)