1
0
forked from VimPlug/jedi

Fix final gradual typing related issues

This commit is contained in:
Dave Halter
2019-08-19 19:43:45 +02:00
parent b19ba12566
commit caee8e9952
3 changed files with 5 additions and 5 deletions

View File

@@ -139,7 +139,7 @@ def _search_function_executions(inference_state, module_context, funcdef, string
if i * inference_state.dynamic_params_depth > MAX_PARAM_SEARCHES:
return
random_context = inference_state.create_context(for_mod_context, name)
random_context = for_mod_context.create_context(name)
for function_execution in _check_name_for_execution(
inference_state, random_context, compare_node, name, trailer):
found_executions = True