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

Commit

Permalink
Add commas in our error ignore so autopep8 understands them
Browse files Browse the repository at this point in the history
See hhatto/autopep8#708. Previously running
autopep8 would move our imports around.
  • Loading branch information
PeterJCLaw committed Sep 30, 2023
1 parent d0885a2 commit 1b6e167
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ exclude =
venv
ignore =
# don't require set comprehensions
C401
C401,
# Ignore flake8's complaints about import positions since we're using isort
E402
E402,
# W503 and W504 conflict; ignore the one that is less visually appealing.
W504
W504,

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

0 comments on commit 1b6e167

Please sign in to comment.