Skip to content

Commit f04e314

Browse files
authored
Remove F821 from the flake8 ignorelist (#13553)
This is a useful check, and it doesn't seem to generate false positives anymore
1 parent ff1199b commit f04e314

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: setup.cfg

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ exclude =
3838
# B007: Loop control variable not used within the loop body.
3939
# B011: Don't use assert False
4040
# B023: Function definition does not bind loop variable
41-
# F821: Name not defined (generates false positives with error codes)
4241
# E741: Ambiguous variable name
43-
extend-ignore = E203,E501,W601,E402,B006,B007,B011,B023,F821,E741
42+
extend-ignore = E203,E501,W601,E402,B006,B007,B011,B023,E741
4443

4544
[coverage:run]
4645
branch = true

0 commit comments

Comments
 (0)