Skip to content

Commit

Permalink
ignore w503 in flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
eyadgaran committed Jun 25, 2020
1 parent 679622b commit 502d351
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install:
- pip install flake8

script:
- flake8 . --ignore=E121,E221,E251,E261,E266,E302,E303,E305,F401,E402,E501,E502 --exclude=.git,.tox,build,dist
- flake8 . --ignore=E121,E221,E251,E261,E266,E302,E303,E305,F401,E402,E501,E502,W503 --exclude=.git,.tox,build,dist
- coverage run setup.py test

after_success:
Expand Down Expand Up @@ -67,3 +67,4 @@ deploy:
# E402, # module level import not at top of file
# E501, # line too long
# E502, # the backslash is redundant between brackets
# W503, # line break before binary operator (considered an anti-pattern in W504)

0 comments on commit 502d351

Please sign in to comment.