We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When creating docstrings for decorated python functions or classes, the docstrings sometimes are inserted on the wrong line. Example:
@dataclass() """WRONG: docstring sometimes inserted here""" class Foo: """RIGHT: correct docstring position"""
When creating docstrings for decorated python functions or classes, the docstrings sometimes are inserted on the wrong line.
Example: