summaryrefslogtreecommitdiff
path: root/cinderclient/client.py
diff options
context:
space:
mode:
authorEric Harney <eharney@redhat.com>2017-08-01 15:16:22 -0400
committerEric Harney <eharney@redhat.com>2017-08-01 16:23:49 -0400
commit60d00b0a035f5d6e0c436dee50719238cdf119cc (patch)
tree96fdadc00c1dc8dea11b74655442dd55a3eec7e7 /cinderclient/client.py
parent370566e2e977aeda0bcb908f8d08cee4c7b18472 (diff)
downloadpython-cinderclient-60d00b0a035f5d6e0c436dee50719238cdf119cc.tar.gz
Enable H306
Enforce ordering of imports with H306. For tests, this is mostly done by grouping test imports after other cinderclient imports. Change-Id: Ie40fda014d1aedb057e5b4ea1f27f999c84e6373
Diffstat (limited to 'cinderclient/client.py')
-rw-r--r--cinderclient/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cinderclient/client.py b/cinderclient/client.py
index dabfcd3..52315a9 100644
--- a/cinderclient/client.py
+++ b/cinderclient/client.py
@@ -32,8 +32,8 @@ import six
from keystoneauth1 import access
from keystoneauth1 import adapter
-from keystoneauth1.identity import base
from keystoneauth1 import discover
+from keystoneauth1.identity import base
from oslo_utils import encodeutils
from oslo_utils import importutils
from oslo_utils import strutils
@@ -41,10 +41,10 @@ osprofiler_web = importutils.try_import("osprofiler.web") # noqa
import requests
import six.moves.urllib.parse as urlparse
+from cinderclient._i18n import _
from cinderclient import api_versions
from cinderclient import exceptions
import cinderclient.extension
-from cinderclient._i18n import _
try:
from eventlet import sleep