Skip to content

Commit

Permalink
Merge pull request ansible#12945 from TheRealHaoLiu/fix-import-order-…
Browse files Browse the repository at this point in the history
…partially

Fix import order partially
  • Loading branch information
TheRealHaoLiu authored Sep 26, 2022
2 parents 7909983 + 7955692 commit 2dcb127
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions awx/api/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,22 @@
UnifiedJobDeletionMixin,
NoTruncateMixin,
)
from awx.api.views.instance_install_bundle import InstanceInstallBundle # noqa
from awx.api.views.inventory import ( # noqa
InventoryList,
InventoryDetail,
InventoryUpdateEventsList,
InventoryList,
InventoryDetail,
InventoryActivityStreamList,
InventoryInstanceGroupsList,
InventoryAccessList,
InventoryObjectRolesList,
InventoryJobTemplateList,
InventoryLabelList,
InventoryCopy,
)
from awx.api.views.mesh_visualizer import MeshVisualizer # noqa
from awx.api.views.organization import ( # noqa
OrganizationList,
OrganizationDetail,
Expand All @@ -145,21 +161,6 @@
OrganizationAccessList,
OrganizationObjectRolesList,
)
from awx.api.views.inventory import ( # noqa
InventoryList,
InventoryDetail,
InventoryUpdateEventsList,
InventoryList,
InventoryDetail,
InventoryActivityStreamList,
InventoryInstanceGroupsList,
InventoryAccessList,
InventoryObjectRolesList,
InventoryJobTemplateList,
InventoryLabelList,
InventoryCopy,
)
from awx.api.views.mesh_visualizer import MeshVisualizer # noqa
from awx.api.views.root import ( # noqa
ApiRootView,
ApiOAuthAuthorizationRootView,
Expand All @@ -174,8 +175,6 @@
from awx.api.pagination import UnifiedJobEventPagination
from awx.main.utils import set_environ

from awx.api.views.instance_install_bundle import InstanceInstallBundle # noqa

logger = logging.getLogger('awx.api.views')


Expand Down

0 comments on commit 2dcb127

Please sign in to comment.