Skip to content

Commit

Permalink
Ignore W503 as PEP 8 has reversed its position on this.
Browse files Browse the repository at this point in the history
  • Loading branch information
natefoo committed Jul 7, 2016
1 parent 05eebac commit a074af5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
# 203 whitespace before ':'
# 402 module level import not at top of file # TODO, we would like to improve this.
# 501 is line length
ignore = E128,E201,E202,E203,E501,E402
# W503 is line breaks before binary operators, which has been reversed in PEP 8.
ignore = E128,E201,E202,E203,E501,E402,W503

0 comments on commit a074af5

Please sign in to comment.