Ignore E741, flags single-letter var names in comprehensions which I want to allow

This commit is contained in:
Ross McFarland
2020-06-01 06:26:48 -07:00
parent 42c55f298e
commit a1b72ac29f
+1 -1
View File
@@ -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