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
It's common hard-wrap docstrings to abide by max-line-length conventions:
classMyView(...):
defget(...):
""" Do a thing. This is my long and very helpful description of what my endpoint is for which I am manually breaking into two lines. """
which yields:
This is my long and very helpful description of what my endpoint is for
which I am manually breaking into two lines.
It'd be nice to instead see the soft-wrapped version in the output:
This is my long and very helpful description of what my endpoint is for which I am manually breaking into two lines.
Of course, double-line breaks should still be regarded as actual line breaks in the output.
The text was updated successfully, but these errors were encountered:
It's common hard-wrap docstrings to abide by max-line-length conventions:
which yields:
It'd be nice to instead see the soft-wrapped version in the output:
Of course, double-line breaks should still be regarded as actual line breaks in the output.
The text was updated successfully, but these errors were encountered: