diff options
author | Joe Gordon <joe.gordon0@gmail.com> | 2013-05-28 06:52:55 +0300 |
---|---|---|
committer | Joe Gordon <joe.gordon0@gmail.com> | 2013-05-28 23:04:35 +0200 |
commit | d9c145c7b86f7cc8807ec4c63fd2cbdad17794ab (patch) | |
tree | ceb25f6cb5bc4aaa508900d8d65394f0e4ddd03c /tox.ini | |
parent | a3e6133628310b0f41fad7271b048e30c0401e62 (diff) | |
download | nova-d9c145c7b86f7cc8807ec4c63fd2cbdad17794ab.tar.gz |
Fix and enable flake8 F812
F812 list comprehension redefines
List comprehension don't have scope so redefining variables can lead to
unexpected behaviors
Change-Id: I85484dfcd4fa391195ea7be75aadc7897da4739c
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ commands = commands = {posargs} [flake8] -ignore = E12,E711,E712,H302,H303,H403,H404,F403,F811,F812,F823,F841 +ignore = E12,E711,E712,H302,H303,H403,H404,F403,F811,F823,F841 builtins = _ exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,plugins,tools |