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
I noticed that when docstrings get wrapped the text is repeated twice on the new line. Weirdly enough, this happens only when the number of letters of the word that is being wrapped is 3 or 4, and the word begins with a letter.
Example:
classExample(object):
""" Some docstring Parameters ---------------- first_param: int The last word should be three of four letters long and begin with """
gets wrapped as:
classExample(object):
""" Some docstring Parameters ---------------- first_param: int The last word should be three of four letters long and begin withwith """
The text was updated successfully, but these errors were encountered:
I noticed that when docstrings get wrapped the text is repeated twice on the new line. Weirdly enough, this happens only when the number of letters of the word that is being wrapped is 3 or 4, and the word begins with a letter.
Example:
gets wrapped as:
The text was updated successfully, but these errors were encountered: