forked from VimPlug/jedi
Replaced tuple passed as sys_path actual argument with list
Fixes davidhalter#1909
This commit is contained in:
@@ -125,7 +125,7 @@ class InferenceState:
|
||||
@inference_state_function_cache()
|
||||
def builtins_module(self):
|
||||
module_name = 'builtins'
|
||||
builtins_module, = self.import_module((module_name,), sys_path=())
|
||||
builtins_module, = self.import_module((module_name,), sys_path=[])
|
||||
return builtins_module
|
||||
|
||||
@property # type: ignore[misc]
|
||||
|
||||
Reference in New Issue
Block a user