Skip to content

Commit

Permalink
Something changed with flake8 and noqa: D401
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjc committed Apr 15, 2021
1 parent eeeb397 commit 3d70df5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions flake8_rst_docstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,8 +657,10 @@ def parse_docstring(self):
return docstring
return None

def parse_decorators(self): # noqa : D401
"""Called after first @ is found.
def parse_decorators(self):
"""Parse decorators into a private attribute.
Called after first @ is found.
Parse decorators into self._accumulated_decorators.
Continue to do so until encountering the 'def' or 'class' start token.
Expand Down

0 comments on commit 3d70df5

Please sign in to comment.