From 484102119a545e5a1c190f907cbb68c3ac96d6d5 Mon Sep 17 00:00:00 2001 From: David Shrewsbury Date: Mon, 13 Oct 2014 10:21:25 -0400 Subject: [PATCH] Enable H305 PEP8 check Fixes files with the PEP8 error: H305 imports not grouped correctly and enables the check in tox.ini. Import order is: stdlib, 3rd-party, project imports Change-Id: I81fc67bc9f79c514b6f4941a13e44c95badd34e2 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9b864a96..2c7e2df2 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,E111,E113,E131,E265,E711,F812,H305 +ignore = E12,E111,E113,E131,E265,E711,F812 exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova* [hacking]