forked from VimPlug/jedi
Fix some issues for args resolving in method calls
This commit is contained in:
@@ -400,7 +400,7 @@ class BoundMethod(FunctionMixin, ContextWrapper):
|
||||
return function_execution.infer()
|
||||
|
||||
def get_signatures(self):
|
||||
return [sig.bind(self) for sig in self._wrapped_context.get_signatures()]
|
||||
return [sig.bind(self) for sig in super(BoundMethod, self).get_signatures()]
|
||||
|
||||
def __repr__(self):
|
||||
return '<%s: %s>' % (self.__class__.__name__, self._wrapped_context)
|
||||
|
||||
Reference in New Issue
Block a user