Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit 1b6e167

Browse files
committed
Add commas in our error ignore so autopep8 understands them
See hhatto/autopep8#708. Previously running autopep8 would move our imports around.
1 parent d0885a2 commit 1b6e167

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ exclude =
1010
venv
1111
ignore =
1212
# don't require set comprehensions
13-
C401
13+
C401,
1414
# Ignore flake8's complaints about import positions since we're using isort
15-
E402
15+
E402,
1616
# W503 and W504 conflict; ignore the one that is less visually appealing.
17-
W504
17+
W504,
1818

1919
per-file-ignores =
2020
# This is the example file, where we encourage use of `import *`.

0 commit comments

Comments
 (0)