Closed Ahrak closed 4 years ago
Using colons in method/function docstring leads to a problem where mkapi interprets this line as return type of a function:
def show_me_the_problem(self): """i show you that this: is a problem""" pass
Screenshot:
I fixed this issue in version 1.0.6:
class A: def func(self): """this: is not type.""" @property def prop(self): """this: is type."""
resolved. thx :+1:
Using colons in method/function docstring leads to a problem where mkapi interprets this line as return type of a function:
Screenshot: