Fix and enable gating on F841

F841 local variable is assigned to but never used

Change-Id: I4b54489386deb655821192b4ec1e9c0ea596a9b7
This commit is contained in:
Morgan Fainberg 2013-08-29 15:07:50 -07:00
parent 8093ca795f
commit 4570c7aca1

View File

@ -29,8 +29,7 @@ downloadcache = ~/cache/pip
[flake8]
# F811: redefinition of unused 'client' from line 81
# F821: undefined name
# F841: local variable is assigned to but never used
# H304: no relative imports
ignore = F811,F821,F841,H304
ignore = F811,F821,H304
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build