Skip to content

Commit

Permalink
Fix Flake8 config
Browse files Browse the repository at this point in the history
  • Loading branch information
WillDaSilva committed Nov 29, 2022
1 parent 7449637 commit aacceff
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ max-complexity = 10
docstring-convention = google
allow-star-arg-any = true
ignore =
ANN101 # Missing type annotation for self in method
ANN102 # Missing type annotation for cls in classmethod
W503 # Line break occurred before a binary operator
# Missing type annotation for self in method
ANN101
# Missing type annotation for cls in classmethod
ANN102
# Line break occurred before a binary operator
W503
per-file-ignores =
# Don't require docstrings or type annotations in tests
tests/*:ANN,D,DAR

0 comments on commit aacceff

Please sign in to comment.