1
0
forked from VimPlug/jedi

Make sure that Callables are properly represented

See also comment of https://github.com/davidhalter/jedi/pull/1614#issuecomment-647054740
This commit is contained in:
Dave Halter
2020-06-21 01:31:38 +02:00
parent 3488f6b61d
commit a3410f124a
3 changed files with 7 additions and 3 deletions

View File

@@ -415,6 +415,9 @@ class BaseTypingInstance(LazyValueWrapper):
def get_annotated_class_object(self):
return self._class_value
def get_qualified_names(self):
return (self.py__name__(),)
@property
def name(self):
return ValueName(self, self._tree_name)