From 73c289113425f7c88e01a49b225d20eb6b4b50ab Mon Sep 17 00:00:00 2001 From: Sarah Gibson Date: Wed, 2 Feb 2022 11:38:13 +0000 Subject: [PATCH] Add F841 to flake8 ignore list --- .flake8 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index 32597edf11..fb5e07587b 100644 --- a/.flake8 +++ b/.flake8 @@ -6,5 +6,6 @@ # E402: module level import not at top of file # I100: Import statements are in the wrong order # I101: Imported names are in the wrong order. Should be -ignore = E, C, W, I100, I101, D400 +# F841: local variable ... is assigned to but never used +ignore = E, C, W, I100, I101, D400, F841 builtins = c