summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDavid Shrewsbury <shrewsbury.dave@gmail.com>2014-10-14 14:33:12 -0400
committerDavid Shrewsbury <shrewsbury.dave@gmail.com>2014-10-14 14:36:26 -0400
commit3e26f519f6be381271dbca7bf3812e648a76a80d (patch)
tree8206dd81c60ebbd7fcd46a1a31a205103e890a82 /tox.ini
parent4589ba37077687bff3dee2ee4e0a4f340282dc48 (diff)
downloadironic-3e26f519f6be381271dbca7bf3812e648a76a80d.tar.gz
Fix E131 PEP8 errors
Fixes files with the following error: E131 continuation line unaligned for hanging indent and enables the check in tox.ini. Also enables the E113 check (unexpected indentation) since it seems that was fixed coincidentally with other previous changes. Change-Id: I9270e5df257e12dc903689d8eb6fb03be01c034b
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 4a3b6abf3..9dcd30d06 100644
--- a/tox.ini
+++ b/tox.ini
@@ -47,7 +47,7 @@ commands = {posargs}
[flake8]
# E711: ignored because it is normal to use "column == None" in sqlalchemy
# TODO(yuriyz): Analyze or fix the warnings blacklisted below
-ignore = E12,E113,E131,E265,E711
+ignore = E12,E265,E711
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova*
[hacking]