Fix PEP8 E124 & E125 errors

Fix PEP8 E124 & E125 errors
    E124: closing bracket does not match visual indentation
    E125: continuation line with same indent as next logical line

Remove E124 & E125 from the ignore list for flake8

Change-Id: Ia9aee2fb7e0bb6771aad11d3523119944eeb4170
This commit is contained in:
John L. Villalovos
2015-02-19 10:12:02 -08:00
parent df01ae3504
commit 06e620844b

View File

@@ -52,7 +52,7 @@ commands = {posargs}
[flake8]
# E711: ignored because it is normal to use "column == None" in sqlalchemy
ignore = E123,E124,E125,E126,E127,E128,E129,E711
ignore = E123,E126,E127,E128,E129,E711
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova*
max-complexity=17