Remove "typing." prefix from compiled signature param

This commit is contained in:
Endill
2020-04-30 10:16:10 +03:00
parent d606ea6759
commit 889ffbf8e9
+1 -1
View File
@@ -487,7 +487,7 @@ class DirectObjectAccess(object):
def _annotation_to_str(self, annotation): def _annotation_to_str(self, annotation):
if isinstance(annotation, type): if isinstance(annotation, type):
return str(annotation.__name__) return str(annotation.__name__)
return str(annotation) return str(annotation).replace('typing.', '')
def get_signature_params(self): def get_signature_params(self):
return [ return [