Change import order

The import order is wrong. Fix it.

[H306] Alphabetically order your imports by the full module path.
Organize your imports according to the Import order template and
Real-world Import Order Examples below.

{{stdlib imports in human alphabetical order}}
\n
{{third-party lib imports in human alphabetical order}}
\n
{{project imports in human alphabetical order}}
\n
\n
{{begin your code}}

See https://docs.openstack.org/hacking/latest/user/hacking.html#imports

Change-Id: I8f898bd528a5bd7b1d4cd64a20c0514e98ede13d
This commit is contained in:
chenxiangui 2018-01-17 15:38:30 +08:00 committed by Michael Johnson
parent 649b33d247
commit dd5c693fb5
1 changed files with 4 additions and 4 deletions

View File

@ -15,6 +15,10 @@
import logging
from oslo_config import cfg
from oslo_utils import excutils
from taskflow.listeners import logging as tf_logging
from octavia.common import base_taskflow
from octavia.common import constants
from octavia.controller.worker.flows import amphora_flows
@ -28,10 +32,6 @@ from octavia.controller.worker.flows import pool_flows
from octavia.db import api as db_apis
from octavia.db import repositories as repo
from oslo_config import cfg
from oslo_utils import excutils
from taskflow.listeners import logging as tf_logging
CONF = cfg.CONF
LOG = logging.getLogger(__name__)