Skip to content

Commit a213ccb

Browse files
authored
Ignore some new flake8 warnings (#6602)
1 parent b643742 commit a213ccb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ exclude =
4141
# B3??: Python 3 compatibility warnings
4242
# B006: use of mutable defaults in function signatures
4343
# B007: Loop control variable not used within the loop body.
44-
ignore = E251,E128,F401,W601,E701,W503,W504,E704,E402,B3,B006,B007
44+
# B011: Don't use assert False
45+
# B009: Don't use getattr with constant strings (FIXME)
46+
ignore = E251,E128,F401,W601,E701,W503,W504,E704,E402,B3,B006,B007,B011,B009
4547

4648
[coverage:run]
4749
branch = true

0 commit comments

Comments
 (0)