You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your support and issue. I have to apologize for late response as my github account was lost and it was recovered recently.
Regarding your issue, I believe this is caused by the incorrect indentation. The package assumes indentation not to be decreased within the same block. You can see the difference between the two examples below.
deffunc_right(param=-1):
""" Example docstring. :param param: param param. """
...
deffunc_wrong(param=-1):
""" Example docstring. :param param: param param. """
...
func_right will not complain this warning while func_wrong will, as is the result I obtained on my end.
Could you please modify your code and report the latest result?
Hello!
Great package, but I have just encountered one problem:
If I write multiline description of parameter:
I get the following warning:
and result looks like this
The text was updated successfully, but these errors were encountered: