1
0
forked from VimPlug/jedi

Fix another error that surfaced in pandas

This commit is contained in:
Dave Halter
2018-03-20 01:04:00 +01:00
parent a61742728b
commit e6a3a8882c

View File

@@ -232,7 +232,7 @@ class CompiledInstance(AbstractInstanceContext):
def get_first_non_keyword_argument_contexts(self):
key, lazy_context = next(self._original_var_args.unpack(), ('', None))
if key is not None:
return None
return NO_CONTEXTS
return lazy_context.infer()