Remove H233 from flake8 ignore list

We support python3 so we can stop ignoring H233.

Change-Id: Ifeda88a3af03a15ea35dd8dc491472df0b3bc7ab
This commit is contained in:
Matt Riedemann 2019-10-16 16:54:57 -04:00
parent 73a1e85c67
commit b671bb065a
1 changed files with 1 additions and 2 deletions

View File

@ -38,11 +38,10 @@ basepython = python3
commands = elastic-recheck -f -n --noirc elasticRecheck.conf
[flake8]
# H233 Skipped because don't support python3 yet
# E125 Skipped because it's an overreach (and anti-emacs)
# E123 Skipped because it decreases clarity in many cases
ignore = E123,E125,H233
ignore = E123,E125
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
[testenv:docs]