PyCharm, the Python IDE generate a template for docstring as I start to type in the docstring. This is the template generated for a simple function.
def add_them(x, y):
"""
:param x:
:param y:
:return:
"""
z = x + y
return z
I dont find it anything similar to the Python's official docstring conventions.
Does this template has any use with any documentation generators like readthedocs?
How do someone use effectively?
What is the proper way to fill the template?
thanks.