summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2019-04-12 16:48:29 +0100
committerEric Fried <openstack@fried.cc>2019-06-24 14:24:06 -0500
commit97b769ef536f4ba496e845f43c79a7f0655a17d3 (patch)
tree43341b27c956322b74a62e9171075e629fbf2853 /tox.ini
parent231908a7f42b8329a58e62c8a89204fdeaa16dca (diff)
downloadnova-97b769ef536f4ba496e845f43c79a7f0655a17d3.tar.gz
hacking: Resolve E741 (ambiguous variable name)
Change-Id: I071ac917d192d0dd70eaf78a22d2716ecb648eb4 Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index c149d90d26..22aa176053 100644
--- a/tox.ini
+++ b/tox.ini
@@ -237,10 +237,10 @@ commands = bandit -r nova -x tests -n 5 -ll
#
# W504 skipped since you must choose either W503 or W504 (they conflict)
#
-# W605, E731, and E741 temporarily skipped because of the number of
+# W605 and E731 temporarily skipped because of the number of
# these that have to be fixed
enable-extensions = H106,H203,H904
-ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E251,H405,W504,W605,E731,E741
+ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E251,H405,W504,W605,E731
exclude = .venv,.git,.tox,dist,*lib/python*,*egg,build,tools/xenserver*,releasenotes
# To get a list of functions that are more complex than 25, set max-complexity
# to 25 and run 'tox -epep8'.