Fix import statement order

Fix import statement order to comply with
OpenStack Style Guidelines(*1).

*1: http://docs.openstack.org/developer/hacking/#import-order-template

TrivialFix
Change-Id: I8ded09c14396a46f9d0f8f565d1294b179ce09bc
This commit is contained in:
Takashi NATSUME
2016-10-31 21:21:10 +09:00
parent b83e47c756
commit f653f8b52e

View File

@@ -11,6 +11,7 @@
# under the License.
from copy import deepcopy
import mock
from oslo_db import exception as db_exc
from oslo_utils import timeutils
@@ -20,13 +21,12 @@ from nova import db
from nova.db.sqlalchemy import api as db_api
from nova.db.sqlalchemy import api_models
from nova import exception
import nova.objects.aggregate as aggregate_obj
from nova import test
from nova.tests.unit import matchers
from nova.tests.unit.objects.test_objects import compare_obj as base_compare
from nova.tests import uuidsentinel
import nova.objects.aggregate as aggregate_obj
SUBS = {'metadata': 'metadetails'}