Merge "change import order"

This commit is contained in:
Zuul 2019-09-26 06:45:08 +00:00 committed by Gerrit Code Review
commit 77fdf8a4b7
1 changed files with 7 additions and 6 deletions

View File

@ -18,20 +18,21 @@ An OpenStack Heat server that can run all services.
import eventlet import eventlet
eventlet.monkey_patch(os=False) eventlet.monkey_patch(os=False)
import six
import sys import sys
from oslo_config import cfg
import oslo_i18n as i18n
from oslo_log import log as logging
from oslo_service import systemd
import six
from heat.cmd import api from heat.cmd import api
from heat.cmd import api_cfn from heat.cmd import api_cfn
from heat.cmd import engine from heat.cmd import engine
from heat.common import config from heat.common import config
from heat.common import messaging from heat.common import messaging
from heat import version from heat import version
from oslo_config import cfg
import oslo_i18n as i18n
from oslo_log import log as logging
from oslo_service import systemd
i18n.enable_lazy() i18n.enable_lazy()