commit | 60e0ecd3110e0ba7c0539cba9d325b8c1c630885 | [log] [tgz] |
---|---|---|
author | Pavlo Shchelokovskyy <pshchelokovskyy@mirantis.com> | Sun Dec 14 22:17:21 2014 +0200 |
committer | Pavlo Shchelokovskyy <pshchelokovskyy@mirantis.com> | Tue Jan 20 09:47:25 2015 +0200 |
tree | bf71a01218afa6580b40811d10bc63b4499d4e0e | |
parent | e4d48604ce44e8ac1beabb564b3d05420fa7d3aa [diff] |
Enable H305 and H307 style checks Correct grouping and ordering of imports Change-Id: I47ea0d53f80d7f0aeb01c1c6afd63713be87ddf4
diff --git a/functional/test_remote_stack.py b/functional/test_remote_stack.py index d9eec79..1b6f961 100644 --- a/functional/test_remote_stack.py +++ b/functional/test_remote_stack.py
@@ -11,10 +11,11 @@ # under the License. import logging + +from heatclient import exc import six from heat_integrationtests.common import test -from heatclient import exc LOG = logging.getLogger(__name__)
diff --git a/functional/test_resource_group.py b/functional/test_resource_group.py index 8ccddd8..6c68a19 100644 --- a/functional/test_resource_group.py +++ b/functional/test_resource_group.py
@@ -10,9 +10,8 @@ # License for the specific language governing permissions and limitations # under the License. -import six - from heatclient import exc +import six from heat_integrationtests.common import test
diff --git a/functional/test_template_resource.py b/functional/test_template_resource.py index 828ff74..6b3fabb 100644 --- a/functional/test_template_resource.py +++ b/functional/test_template_resource.py
@@ -12,6 +12,7 @@ import json import logging + import yaml from heat_integrationtests.common import test