We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17eb015 commit ec25a01Copy full SHA for ec25a01
src/lapidary/render/model/python/type_hint.py
@@ -12,7 +12,7 @@ def __repr__(self):
12
return self.full_name()
13
14
def full_name(self):
15
- return self.module + '.' + self.name if self.module != 'builtins' else self.name
+ return self.module + ':' + self.name if self.module != 'builtins' else self.name
16
17
@staticmethod
18
def from_str(path: str) -> 'TypeHint':
0 commit comments