I'm working in a jupyter notebook using python and trying to use the auto-documentation function to generate docstrings like below. When working in an IDE like pycharm a triple quotation + Enter underneath the function generates docstrings like shown below.
def test_function(df: pd.DataFrame, probs: dict) -> int:
"""
:param df:
:param probs:
:return:
"""
Currently my output from the notebook gives the output below and does not parse any arguments inside the function.
def test_function(df: pd.DataFrame, probs: dict) -> int:
"""
"""