Fix module's import order

Made corrections in import order for built-in, third party and
project specific modules as per OpenStack import standards [1].

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

Change-Id: I899deefd6ee4732d6c0afd17a5afbe42b0fa37ba
This commit is contained in:
Bhagyashri Shewale
2016-01-20 02:48:22 -08:00
committed by bhagyashris
parent 47499d291c
commit 88e899f7a0
76 changed files with 84 additions and 92 deletions

View File

@@ -14,6 +14,8 @@
# under the License.
import collections
from operator import attrgetter
import six
import testscenarios
@@ -24,7 +26,6 @@ from neutron.db import common_db_mixin
from neutron.scheduler import dhcp_agent_scheduler
from neutron.tests.unit.scheduler import (test_dhcp_agent_scheduler as
test_dhcp_sch)
from operator import attrgetter
# Required to generate tests from scenarios. Not compatible with nose.
load_tests = testscenarios.load_tests_apply_scenarios

View File

@@ -15,6 +15,7 @@
import collections
import random
import testscenarios
from neutron import context