Delete H803 in flake8 ignore list

In hacking >=0.10.0,there is not H803.So we should drop it
in flake8 ignore list.

Change-Id: I27fc7c095e9cbbb29dddb06c3675038d595e1711
This commit is contained in:
Wei Li 2016-08-02 19:44:31 +08:00
parent 932b495077
commit 765eaa6a5d
1 changed files with 1 additions and 2 deletions

View File

@ -19,11 +19,10 @@ commands = python setup.py build_sphinx
commands = python setup.py test --coverage --coverage-package-name=oslo_context --testr-args='{posargs}'
[flake8]
# H803 skipped on purpose per list discussion.
# E123, E125 skipped as they are invalid PEP-8.
show-source = True
ignore = E123,E125,H803
ignore = E123,E125
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
[hacking]