Drop H803 in flake8 ignore list

In hacking >=0.10.0,there is not H803.We should remove it.

Change-Id: I4738aba1d02ad1404944a326f1ce5538dd1edc7a
This commit is contained in:
xianming.mao 2016-08-03 14:08:31 +08:00
parent afb53323a1
commit d8e6057b31
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_serialization --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
[testenv:pip-missing-reqs]