Skip to content

Commit

Permalink
Remove F821 from the flake8 ignorelist (#13553)
Browse files Browse the repository at this point in the history
This is a useful check, and it doesn't seem to generate false positives anymore
  • Loading branch information
AlexWaygood authored Aug 29, 2022
1 parent ff1199b commit f04e314
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,8 @@ exclude =
# B007: Loop control variable not used within the loop body.
# B011: Don't use assert False
# B023: Function definition does not bind loop variable
# F821: Name not defined (generates false positives with error codes)
# E741: Ambiguous variable name
extend-ignore = E203,E501,W601,E402,B006,B007,B011,B023,F821,E741
extend-ignore = E203,E501,W601,E402,B006,B007,B011,B023,E741

[coverage:run]
branch = true
Expand Down

0 comments on commit f04e314

Please sign in to comment.