Skip to content

Commit 73c2891

Browse files
committed
Add F841 to flake8 ignore list
1 parent 7f48533 commit 73c2891

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.flake8

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
# E402: module level import not at top of file
77
# I100: Import statements are in the wrong order
88
# I101: Imported names are in the wrong order. Should be
9-
ignore = E, C, W, I100, I101, D400
9+
# F841: local variable ... is assigned to but never used
10+
ignore = E, C, W, I100, I101, D400, F841
1011
builtins = c

0 commit comments

Comments
 (0)