Ignore pep8 E741

This is a new pep8 error and for the time being we'll keep our
variable names.

Change-Id: I19c8e6934fcdebe4863a2242a4b5ea760f35131d
This commit is contained in:
David Moreau-Simard 2017-10-25 10:16:43 -04:00
parent 8747ff4500
commit a6ca0b69f0
No known key found for this signature in database
GPG Key ID: 33A07694CBB71ECC
1 changed files with 2 additions and 1 deletions

View File

@ -45,9 +45,10 @@ passenv =
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
# E741, short ambiguous variable names
# H106 Dont put vim configuration in source files
# H203 Use assertIs(Not)None to check for None
ignore = E123,E125
ignore = E123,E125,E741
enable-extensions=H106,H203
show-source = True
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build