1
0
forked from VimPlug/jedi

Type aliases should not have a signature

This commit is contained in:
Dave Halter
2021-01-01 03:59:28 +01:00
parent 4f34712858
commit 778442a972
2 changed files with 5 additions and 0 deletions

View File

@@ -275,6 +275,9 @@ class TypeAlias(LazyValueWrapper):
def gather_annotation_classes(self):
return ValueSet([self._get_wrapped_value()])
def get_signatures(self):
return []
class Callable(BaseTypingInstance):
def py__call__(self, arguments):