Standardize import format

According to the rule in http://docs.openstack.org/developer/hacking/#imports
I modify some irregular import format in heatclinet.

Change-Id: I0200ddad88ee833d7de9d6df2c1519e4f4560db7
This commit is contained in:
shizhihui 2016-07-28 12:25:39 +08:00
parent d930e33cf4
commit 5dbbc102eb
38 changed files with 72 additions and 73 deletions

View File

@ -11,11 +11,12 @@
# under the License.
import copy
import uuid
import six
from six.moves.urllib import parse as urlparse
from swiftclient import client as sc
from swiftclient import utils as swiftclient_utils
import uuid
from heatclient import exc
from heatclient.openstack.common._i18n import _

View File

@ -10,11 +10,11 @@
# License for the specific language governing permissions and limitations
# under the License.
import yaml
from heatclient.common import template_format
from heatclient.openstack.common._i18n import _
import yaml
SECTIONS = (
PARAMETER_DEFAULTS, PARAMETERS, RESOURCE_REGISTRY, EVENT_SINKS

View File

@ -17,7 +17,6 @@ import time
from heatclient.common import utils
import heatclient.exc as exc
from heatclient.openstack.common._i18n import _

View File

@ -12,9 +12,10 @@
#
# Copyright 2015 IBM Corp.
import sys
from osc_lib.command import command
import six
import sys
class RawFormat(command.ShowOne):

View File

@ -15,7 +15,6 @@ import logging
from oslo_utils import fnmatch
import heatclient.exc as exc
from heatclient.openstack.common._i18n import _
from heatclient.openstack.common._i18n import _LE

View File

@ -14,10 +14,10 @@
"""Orchestration v1 build info action implementations"""
import logging
import six
from osc_lib.command import command
from osc_lib import utils
import six
from heatclient.common import utils as heat_utils

View File

@ -14,14 +14,14 @@
"""Orchestration v1 Stack action implementations"""
import logging
import six
from six.moves.urllib import request
from osc_lib.command import command
from osc_lib import exceptions as exc
from osc_lib.i18n import _
from osc_lib import utils
from oslo_serialization import jsonutils
import six
from six.moves.urllib import request
from heatclient.common import format_utils
from heatclient.common import utils as heat_utils

View File

@ -14,14 +14,15 @@
"""Orchestration v1 resource type implementations"""
import logging
from osc_lib.command import command
from osc_lib import exceptions as exc
from osc_lib.i18n import _
import six
from heatclient.common import format_utils
from heatclient.common import utils as heat_utils
from heatclient import exc as heat_exc
from osc_lib.command import command
from osc_lib import exceptions as exc
from osc_lib.i18n import _
class ResourceTypeShow(format_utils.YamlFormat):

View File

@ -14,12 +14,12 @@
"""Orchestration v1 Stack Snapshot implementations."""
import logging
import six
from osc_lib.command import command
from osc_lib import exceptions as exc
from osc_lib.i18n import _
from osc_lib import utils
import six
from heatclient.common import format_utils
from heatclient import exc as heat_exc

View File

@ -14,14 +14,13 @@
"""Orchestration v1 software config action implementations"""
import logging
import six
from six.moves.urllib import request
import yaml
from osc_lib.command import command
from osc_lib import exceptions as exc
from osc_lib import utils
import six
from six.moves.urllib import request
import yaml
from heatclient.common import format_utils
from heatclient.common import template_format

View File

@ -14,11 +14,11 @@
"""Orchestration v1 Software Deployment action implementations"""
import logging
from oslo_serialization import jsonutils
from osc_lib.command import command
from osc_lib import exceptions as exc
from osc_lib import utils
from oslo_serialization import jsonutils
from heatclient.common import deployment_utils
from heatclient.common import format_utils

View File

@ -13,11 +13,10 @@
# Copyright 2015 IBM Corp.
import logging
import six
from osc_lib.command import command
from osc_lib import utils
import six
from heatclient.common import format_utils
from heatclient.common import http

View File

@ -11,8 +11,8 @@
# under the License.
import os
import six
import six
from tempest.lib.cli import base
from tempest.lib.cli import output_parser

View File

@ -10,9 +10,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from tempest.lib.common.utils import data_utils as utils
from heatclient.tests.functional.osc.v1 import base
from tempest.lib.common.utils import data_utils as utils
class OpenStackClientStackTest(base.OpenStackClientTestBase):

View File

@ -13,6 +13,7 @@
# Copyright 2015 IBM Corp.
import copy
import mock
import testscenarios

View File

@ -12,8 +12,8 @@
#
import copy
import mock
import mock
from osc_lib import exceptions as exc
from heatclient import exc as heat_exc

View File

@ -12,9 +12,8 @@
#
import mock
import yaml
from osc_lib import exceptions as exc
import yaml
from heatclient import exc as heat_exc
from heatclient.osc.v1 import software_config

View File

@ -12,8 +12,8 @@
#
import copy
import mock
import mock
from osc_lib import exceptions as exc
from heatclient import exc as heat_exc

View File

@ -13,14 +13,14 @@
import copy
import io
import mock
from osc_lib import exceptions as exc
from osc_lib import utils
import six
import testscenarios
import yaml
from osc_lib import exceptions as exc
from osc_lib import utils
from heatclient.common import template_format
from heatclient import exc as heat_exc
from heatclient.osc.v1 import stack

View File

@ -11,11 +11,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import testtools
from heatclient.tests.unit import fakes
from heatclient.v1 import actions
import testtools
class ActionManagerTest(testtools.TestCase):

View File

@ -12,6 +12,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import mock
from oslo_serialization import jsonutils
import testtools

View File

@ -13,11 +13,11 @@
# limitations under the License.
import logging
import mock
import os
import socket
from keystoneauth1 import adapter
import mock
from mox3 import mox
from oslo_serialization import jsonutils
import requests

View File

@ -16,11 +16,11 @@ import six
import swiftclient.client
import testscenarios
import testtools
from testtools import matchers
from heatclient.common import deployment_utils
from heatclient import exc
from heatclient.v1 import software_configs
from testtools import matchers
load_tests = testscenarios.load_tests_apply_scenarios

View File

@ -10,14 +10,13 @@
# License for the specific language governing permissions and limitations
# under the License.
from heatclient.common import environment_format
import mock
import six
import testscenarios
import testtools
import yaml
from heatclient.common import environment_format
load_tests = testscenarios.load_tests_apply_scenarios

View File

@ -12,13 +12,13 @@
# License for the specific language governing permissions and limitations
# under the License.
from heatclient.common import utils
from heatclient.v1 import events
import mock
from mox3 import mox
import testtools
from heatclient.common import utils
from heatclient.v1 import events
class EventManagerTest(testtools.TestCase):

View File

@ -13,6 +13,7 @@
import json
import os
import six
from heatclient.common import resource_formatter

View File

@ -10,6 +10,7 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import mock
import testtools

View File

@ -11,14 +11,14 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from heatclient.common import utils
from heatclient.v1 import resources
from six.moves.urllib import parse
from mox3 import mox
from six.moves.urllib import parse
import testtools
from heatclient.common import utils
from heatclient.v1 import resources
class ResourceManagerTest(testtools.TestCase):

View File

@ -13,10 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from heatclient import exc
import testtools
from heatclient import exc
from heatclient.v1 import services

View File

@ -11,28 +11,27 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import fixtures
import mock
import os
import sys
import tempfile
import uuid
import fixtures
from keystoneauth1 import fixture as keystone_fixture
import mock
from mox3 import mox
from oslo_serialization import jsonutils
from oslo_utils import encodeutils
from oslotest import mockpatch
import requests
from requests_mock.contrib import fixture as rm_fixture
import six
from six.moves.urllib import parse
from six.moves.urllib import request
import sys
import tempfile
import testscenarios
import testtools
import uuid
import yaml
from keystoneauth1 import fixture as keystone_fixture
from oslo_serialization import jsonutils
from oslo_utils import encodeutils
from requests_mock.contrib import fixture as rm_fixture
from mox3 import mox
from heatclient.common import http
from heatclient.common import utils
from heatclient import exc

View File

@ -9,13 +9,14 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from heatclient.v1 import stacks
import mock
import testscenarios
from testscenarios import scenarios as scnrs
import testtools
from heatclient.v1 import stacks
load_tests = testscenarios.load_tests_apply_scenarios

View File

@ -13,11 +13,12 @@
import base64
import json
import tempfile
from mox3 import mox
import six
from six.moves.urllib import error
from six.moves.urllib import request
import tempfile
import testtools
from testtools import matchers
import yaml

View File

@ -12,12 +12,15 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import os
import mock
import testtools
from heatclient.common import utils
from heatclient import exc
from heatclient.v1 import resources as hc_res
import mock
import os
import testtools
class ShellTest(testtools.TestCase):

View File

@ -14,9 +14,8 @@
import mock
import testtools
import heatclient.v1.shell as shell
from heatclient.common import hook_utils
import heatclient.v1.shell as shell
class TestHooks(testtools.TestCase):

View File

@ -11,13 +11,11 @@
# License for the specific language governing permissions and limitations
# under the License.
import six
from heatclient.common import utils
from oslo_utils import encodeutils
import six
from six.moves.urllib import parse
from heatclient.common import utils
from heatclient.openstack.common.apiclient import base

View File

@ -12,12 +12,12 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from heatclient.common import utils
from oslo_utils import encodeutils
import six
from six.moves.urllib import parse
from heatclient.common import utils
from heatclient.openstack.common.apiclient import base
from heatclient.v1 import stacks

View File

@ -14,12 +14,12 @@
# under the License.
import logging
import sys
from oslo_serialization import jsonutils
from oslo_utils import strutils
import six
from six.moves.urllib import request
import sys
import yaml
from heatclient.common import deployment_utils
@ -29,13 +29,11 @@ from heatclient.common import http
from heatclient.common import template_format
from heatclient.common import template_utils
from heatclient.common import utils
import heatclient.exc as exc
from heatclient.openstack.common._i18n import _
from heatclient.openstack.common._i18n import _LI
from heatclient.openstack.common._i18n import _LW
import heatclient.exc as exc
logger = logging.getLogger(__name__)

View File

@ -12,11 +12,11 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from heatclient.common import utils
import six
from six.moves.urllib import parse
from heatclient.common import utils
from heatclient import exc
from heatclient.openstack.common._i18n import _
from heatclient.openstack.common.apiclient import base