From 06e620844bd55b28f4339071aace233cc531c496 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Thu, 19 Feb 2015 10:12:02 -0800 Subject: [PATCH] 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 259eecab..966b0549 100644 --- a/tox.ini +++ b/tox.ini @@ -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