Skip to content

Commit 2f0ebe0

Browse files
committed
Ignore Flake8 rule W503
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.
1 parent 3ac2188 commit 2f0ebe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[flake8]
22
max-line-length = 120
3-
ignore = E266 E731
3+
ignore = E266 E731 W503
44
exclude = .venv*
55

66
[tool:pytest]

0 commit comments

Comments
 (0)