summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJoshua Powers <josh.powers@canonical.com>2020-06-01 14:20:39 -0700
committerGitHub <noreply@github.com>2020-06-01 17:20:39 -0400
commit4ab3303ec4bb49f029b7821d6dba53a6b02b6dc1 (patch)
treec60b8f1d4ca9735efee890042b9d32ab6bc51f7d /tox.ini
parent1211ab449bdfa34b8883c7386772155e6a516ebb (diff)
downloadcloud-init-git-4ab3303ec4bb49f029b7821d6dba53a6b02b6dc1.tar.gz
test: fix all flake8 E741 errors (#401)
This removes the use of variables named ‘l’, ‘O’, or ‘I’. Generally these are used in list comprehension to read the line of lines.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 611c3111..57b20568 100644
--- a/tox.ini
+++ b/tox.ini
@@ -49,10 +49,9 @@ deps = -r{toxinidir}/test-requirements.txt
# E226: missing whitespace around arithmetic operator
# E241: multiple spaces after ‘,’
# E402: module level import not at top of file
-# E741: do not use variables named ‘l’, ‘O’, or ‘I’
# W503: line break before binary operator
# W504: line break after binary operator
-ignore=E121,E123,E126,E226,E241,E402,E741,W503,W504
+ignore=E121,E123,E126,E226,E241,E402,W503,W504
exclude = .venv,.tox,dist,doc,*egg,.git,build,tools
[testenv:doc]