Address pep8 job failure

Change-Id: I5fff63c413487cb102e928566cc6b1a7544650be
This commit is contained in:
Ilya Shakhat 2020-10-24 14:43:43 +04:00
parent 5b246d4c7c
commit f8456c0af6
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
# The order of packages is significant, because pip processes them in the order
# of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later.
hacking>=0.12.0,!=0.13.0,<0.14 # Apache-2.0
hacking>=0.12.0,!=0.13.0,<0.14;python_version=='2.7' # Apache-2.0
hacking>=3.1.0;python_version>='3.5'
coverage>=3.6
# docutils==0.9.1
fixtures>=1.3.1

View File

@ -35,7 +35,7 @@ commands = python setup.py build_sphinx
[flake8]
# E125 continuation line does not distinguish itself from next logical line
# H404 multi line docstring should start with a summary
ignore = E125,H404
ignore = E125,H404,E741,W504,E305
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,build,*openstack/common*