H803 hacking have been deprecated

H803 hacking have been removed since hacking 0.10.
https://github.com/openstack-dev/hacking/blob/master/setup.cfg
test-requirements.txt require hacking hacking<0.12,>=0.11.0.
So remove H803 ignore statement
Closes-Bug: #1650847

Change-Id: I115c8d3236e857a6b5b54508d1b10cd93d6ee3b6
This commit is contained in:
xhzhf 2016-12-18 09:07:00 +08:00
parent 4bbd243f47
commit 879dc4c81b
1 changed files with 1 additions and 2 deletions

View File

@ -43,11 +43,10 @@ commands = {posargs}
[flake8]
# E712 is ignored on purpose, since it is normal to use 'column == true'
# in sqlalchemy.
# H803 skipped on purpose per list discussion.
# TODO Hacking 0.6 checks to fix
# H102 Apache 2.0 license header not found
ignore = E121,E122,E123,E124,E126,E127,E128,E711,E712,H102,H303,H404,F403,F811,F841,H803
ignore = E121,E122,E123,E124,E126,E127,E128,E711,E712,H102,H303,H404,F403,F811,F841
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools,ec2api/tests/functional/obsolete
max-complexity=25