Skip to content

Commit

Permalink
Ignore Flake8 rule W503
Browse files Browse the repository at this point in the history
As defined in https://www.flake8rules.com/rules/W503.html, this rule
goes against the PEP8 recommendation and conflicts with W504.

In the code, the rule results in a false-positive in
patterns/behavioral/specification.py.
  • Loading branch information
imankulov committed Aug 12, 2020
1 parent 3ac2188 commit 2f0ebe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[flake8]
max-line-length = 120
ignore = E266 E731
ignore = E266 E731 W503
exclude = .venv*

[tool:pytest]
Expand Down

0 comments on commit 2f0ebe0

Please sign in to comment.