1
0
forked from VimPlug/jedi

Change ModuleValue param order and add defaults

This commit is contained in:
Dave Halter
2020-01-01 17:07:19 +01:00
parent cf1f66600c
commit 47e2cf95d2
5 changed files with 6 additions and 8 deletions

View File

@@ -156,7 +156,8 @@ def _get_paths_from_buildout_script(inference_state, buildout_script_path):
from jedi.inference.value import ModuleValue
module_context = ModuleValue(
inference_state, module_node, file_io,
inference_state, module_node,
file_io=file_io,
string_names=None,
code_lines=get_cached_code_lines(inference_state.grammar, buildout_script_path),
).as_context()