Skip to content

Commit af61e49

Browse files
Fix errors in newer flake8 version
It seems newer versions don't handle inline comments
1 parent 35a7801 commit af61e49

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

setup.cfg

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,12 @@ dev =
6262
[flake8]
6363
max-line-length = 80
6464
extend-ignore =
65-
F401 F403 F405 # Allow from module import *
66-
E251 # Allow call(param = value)
67-
E301 E302 E303 E305 # Allow any number of blank lines
65+
# Allow from module import *
66+
F401 F403 F405
67+
# Allow call(param = value)
68+
E251
69+
# Allow any number of blank lines
70+
E301 E302 E303 E305
6871

6972
[tool:pytest]
7073
# Run pytest with all our checkers, and don't spam us with massive tracebacks on error

0 commit comments

Comments
 (0)