Skip to content

Commit af76f11

Browse files
Restoring flake errors C406, C408 and C409
1 parent a28a612 commit af76f11

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.cfg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ ignore =
1717
E402, # module level import not at top of file
1818
E722, # do not use bare except
1919
E731, # do not assign a lambda expression, use a def
20-
E741 # ambiguous variable name 'l'
20+
E741, # ambiguous variable name 'l'
21+
C406, # Unnecessary list literal - rewrite as a dict literal.
22+
C408, # Unnecessary dict call - rewrite as a literal.
23+
C409 # Unnecessary list passed to tuple() - rewrite as a tuple literal.
2124
max-line-length = 79
2225

2326
[yapf]

0 commit comments

Comments
 (0)