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.
map_actuals_to_formals
1 parent 37b0182 commit d7ffbb4Copy full SHA for d7ffbb4
mypy/argmap.py
@@ -36,8 +36,8 @@ def map_actuals_to_formals(
36
The result contains a list of caller argument indexes mapping to each
37
callee argument index, indexed by callee index.
38
39
- The caller_arg_type argument should evaluate to the type of the actual
40
- argument type with the given index.
+ The actual_arg_type argument should evaluate to the type of the actual
+ argument with the given index.
41
"""
42
nformals = len(formal_kinds)
43
formal_to_actual: list[list[int]] = [[] for i in range(nformals)]
0 commit comments