Skip to content
Snippets Groups Projects
Commit f63ee9af authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix for v2.11.32

parent 3bc57a3e
No related branches found
No related tags found
No related merge requests found
...@@ -196,7 +196,7 @@ def call_with_arguments(function: tp.Callable, arguments: tp.Dict[str, tp.Any]) ...@@ -196,7 +196,7 @@ def call_with_arguments(function: tp.Callable, arguments: tp.Dict[str, tp.Any])
if param_kind in (Parameter.VAR_KEYWORD, Parameter.VAR_POSITIONAL): if param_kind in (Parameter.VAR_KEYWORD, Parameter.VAR_POSITIONAL):
continue continue
elif param.default == Parameter.empty: elif param.default == Parameter.empty:
raise TypeError(f'Argument %s not found' % (param_name, )) raise TypeError('Argument %s not found' % (param_name, ))
else: else:
continue continue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment