Skip to content

Commit

Permalink
Triage Flake8 W504
Browse files Browse the repository at this point in the history
Turns out that W503 and W504 are mutually exclusive checks for where
line breaks should go relative to binary operators.  Our code mostly
conforms to W503, so keeping W504 disabled.
  • Loading branch information
jbytheway committed Sep 22, 2020
1 parent 50c06fb commit 30abd69
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,7 @@ ignore =
E713,
E722,
E731,
W504,
W605
W605,
# W503 and W504 require line breaks after or before binary operators; you
# can only have one enabled
W504

0 comments on commit 30abd69

Please sign in to comment.