We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
value
map_actuals_to_formals
1 parent 2189714 commit 8fe86d1Copy full SHA for 8fe86d1
mypy/argmap.py
@@ -73,7 +73,7 @@ def map_actuals_to_formals(actual_kinds: List[nodes.ArgKind],
73
assert actual_kind == nodes.ARG_STAR2
74
actualt = get_proper_type(actual_arg_type(ai))
75
if isinstance(actualt, TypedDictType):
76
- for name, value in actualt.items.items():
+ for name in actualt.items:
77
if name in formal_names:
78
formal_to_actual[formal_names.index(name)].append(ai)
79
elif nodes.ARG_STAR2 in formal_kinds:
0 commit comments