This breaks auto generated docstring templates:
def foo(bar) -> str:
return bar
it results in:
"""[summary]
[description]
"""
it should at least parse the parameters and detect that the function returns:
"""[summary]
[description]
:param bar: [description]
:type bar: [type]
:returns: [description]
:rtype: {[type]}
"""
and ideally it would auto file the return type:
"""[summary]
[description]
:param bar: [description]
:type bar: [type]
:returns: [description]
:rtype: str
"""
This breaks auto generated docstring templates:
it results in:
it should at least parse the parameters and detect that the function returns:
and ideally it would auto file the return type: