summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorghanshyam <ghanshyam.mann@nectechnologies.in>2015-09-28 08:51:25 +0900
committerghanshyam <ghanshyam.mann@nectechnologies.in>2015-09-28 08:51:25 +0900
commitb847b170af94a739bcfa8c614d117db3b9e4e25b (patch)
tree0774da9157c67ba4fc3be063ec19010ff1e8b98e
parentecbef55152144d8302024cadbb66eda716036e42 (diff)
downloadtempest-lib-b847b170af94a739bcfa8c614d117db3b9e4e25b.tar.gz
Fix order of std and third party lib import
There are wrong import grouping of std and third party lib. This commit fix those. Change-Id: I15e700737776e1488167c6a392be62871b67e0b9
-rw-r--r--tempest_lib/cli/base.py3
-rw-r--r--tempest_lib/tests/services/compute/base.py1
2 files changed, 2 insertions, 2 deletions
diff --git a/tempest_lib/cli/base.py b/tempest_lib/cli/base.py
index d5250ff..a80c84b 100644
--- a/tempest_lib/cli/base.py
+++ b/tempest_lib/cli/base.py
@@ -16,9 +16,10 @@
import logging
import os
import shlex
-import six
import subprocess
+import six
+
from tempest_lib import base
import tempest_lib.cli.output_parser
from tempest_lib import exceptions
diff --git a/tempest_lib/tests/services/compute/base.py b/tempest_lib/tests/services/compute/base.py
index 09a3d82..fb3313b 100644
--- a/tempest_lib/tests/services/compute/base.py
+++ b/tempest_lib/tests/services/compute/base.py
@@ -13,7 +13,6 @@
# under the License.
import httplib2
-
from oslo_serialization import jsonutils as json
from oslotest import mockpatch