From a1b72ac29fc3078f721cab53fba708d1e3b4fd04 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 1 Jun 2020 06:26:48 -0700 Subject: [PATCH] Ignore E741, flags single-letter var names in comprehensions which I want to allow --- script/lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lint b/script/lint index 5fd9a7d..627c5be 100755 --- a/script/lint +++ b/script/lint @@ -17,5 +17,5 @@ fi SOURCES="*.py octodns/*.py octodns/*/*.py tests/*.py" -pycodestyle --ignore=E221,E241,E251,E722,W504 $SOURCES +pycodestyle --ignore=E221,E241,E251,E722,E741,W504 $SOURCES pyflakes $SOURCES