Skip to content

Commit db4f823

Browse files
committed
Fix flake8 configuration
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.
1 parent d34e9f9 commit db4f823

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

setup.cfg

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,5 @@ ignore =
1616

1717
[flake8]
1818
max-line-length = 90
19-
ignore = W503 ; W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.
20-
21-
[pep8]
22-
max-line-length = 90
19+
# W503 requires that binary operators be at the end, not start, of lines. Erik doesn't like it.
20+
ignore = W503

0 commit comments

Comments
 (0)