modify the import order

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
{{begin your code}}

Change-Id: I16e97549a7ae6ddedc07e76dba72236460060650
This commit is contained in:
chenjiao 2018-01-23 17:05:34 +08:00 committed by Dougal Matthews
parent 6e75cc3486
commit 49bdc31f93
1 changed files with 4 additions and 4 deletions

View File

@ -15,18 +15,18 @@
from email import header
from email.mime import text
import json
import requests
import six
import smtplib
import time
from oslo_log import log as logging
import requests
import six
from mistral import exceptions as exc
from mistral.utils import javascript
from mistral.utils import ssh_utils
from mistral_lib import actions
from oslo_log import log as logging
LOG = logging.getLogger(__name__)