forked from VimPlug/jedi
Simplify some more call signature things
This commit is contained in:
@@ -574,8 +574,8 @@ class CallSignature(Definition):
|
||||
It knows what functions you are currently in. e.g. `isinstance(` would
|
||||
return the `isinstance` function. without `(` it would return nothing.
|
||||
"""
|
||||
def __init__(self, definition, signature, bracket_start_pos, index, key_name_str):
|
||||
super(CallSignature, self).__init__(definition.evaluator, definition.name)
|
||||
def __init__(self, evaluator, signature, bracket_start_pos, index, key_name_str):
|
||||
super(CallSignature, self).__init__(evaluator, signature.name)
|
||||
self._index = index
|
||||
self._key_name_str = key_name_str
|
||||
self._bracket_start_pos = bracket_start_pos
|
||||
|
||||
Reference in New Issue
Block a user