Skip to content

Commit fdc9ac5

Browse files
committed
Fix name collision in mypy/test/testinfer.py
1 parent 451ad3f commit fdc9ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/test/testinfer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_special_cases(self) -> None:
9292
def assert_map(
9393
self,
9494
caller_kinds_: list[ArgKind | str],
95-
callee_kinds_: list[ArgKind | tuple[ArgKind, str]],
95+
callee_kinds_: list[ArgKind | Tuple[ArgKind, str]],
9696
expected: list[list[int]],
9797
) -> None:
9898
caller_kinds, caller_names = expand_caller_kinds(caller_kinds_)

0 commit comments

Comments
 (0)