Skip to content

Commit

Permalink
Fix flake8 configuration
Browse files Browse the repository at this point in the history
Apparently flake8 v3 doesn't like trailing comments on config settings.

Also remove the pep8 config, which didn't work (because it was missing W503)
and duplicated the flake8 config. We don't use pep8 on its own, so the config
was duplicative.
  • Loading branch information
richvdh committed Jul 26, 2016
1 parent d34e9f9 commit db4f823
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,5 @@ ignore =

[flake8]
max-line-length = 90
ignore = W503 ; W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.

[pep8]
max-line-length = 90
# W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.
ignore = W503

0 comments on commit db4f823

Please sign in to comment.