Skip to content

Commit 6727e5f

Browse files
scivisionjpakkane
authored andcommitted
add missing commas
1 parent 4b9625a commit 6727e5f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.flake8

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ ignore =
2121
# E402: module level import not at top of file
2222
E402,
2323
# E731: do not assign a lambda expression, use a def (too many false positives)
24-
E731
24+
E731,
2525
# E741: ambiguous variable name 'l'
26-
E741
26+
E741,
2727
# E722: do not use bare except'
28-
E722
28+
E722,
2929
# W504: line break after binary operator
30-
W504
30+
W504,
3131
# A003: builtin class attribute
3232
A003
3333
max-line-length = 120

0 commit comments

Comments
 (0)