get_executed_params_and_issues -> get_executed_param_names_and_issues

This commit is contained in:
Dave Halter
2019-08-24 13:45:47 +02:00
parent bccc85f453
commit b1d2f2462b
7 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -246,7 +246,7 @@ def infer_type_vars_for_execution(execution_context, annotation_dict):
context = execution_context.function_value.get_default_param_context()
annotation_variable_results = {}
executed_params, _ = execution_context.get_executed_params_and_issues()
executed_params, _ = execution_context.get_executed_param_names_and_issues()
for executed_param in executed_params:
try:
annotation_node = annotation_dict[executed_param.string_name]