Skip to content

Commit

Permalink
Fix flake8 ignore option
Browse files Browse the repository at this point in the history
  • Loading branch information
meschac38700 committed May 18, 2021
1 parent 5a88f25 commit bf2888a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@
exclude = .git,pod/*/migrations/*.py,test_settings.py
max-complexity = 7
max-line-length = 90
ignore = ["E203", "W503"]
ignore =
# E203: whitespace before ':'
E203,
# W503: line break before binary operator
W503

0 comments on commit bf2888a

Please sign in to comment.