mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 06:26:00 -03:30
Merge pull request #12945 from TheRealHaoLiu/fix-import-order-partially
Fix import order partially
This commit is contained in:
@@ -122,6 +122,22 @@ from awx.api.views.mixin import (
|
|||||||
UnifiedJobDeletionMixin,
|
UnifiedJobDeletionMixin,
|
||||||
NoTruncateMixin,
|
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
|
from awx.api.views.organization import ( # noqa
|
||||||
OrganizationList,
|
OrganizationList,
|
||||||
OrganizationDetail,
|
OrganizationDetail,
|
||||||
@@ -145,21 +161,6 @@ from awx.api.views.organization import ( # noqa
|
|||||||
OrganizationAccessList,
|
OrganizationAccessList,
|
||||||
OrganizationObjectRolesList,
|
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
|
from awx.api.views.root import ( # noqa
|
||||||
ApiRootView,
|
ApiRootView,
|
||||||
ApiOAuthAuthorizationRootView,
|
ApiOAuthAuthorizationRootView,
|
||||||
@@ -174,8 +175,6 @@ from awx.api.views.webhooks import WebhookKeyView, GithubWebhookReceiver, Gitlab
|
|||||||
from awx.api.pagination import UnifiedJobEventPagination
|
from awx.api.pagination import UnifiedJobEventPagination
|
||||||
from awx.main.utils import set_environ
|
from awx.main.utils import set_environ
|
||||||
|
|
||||||
from awx.api.views.instance_install_bundle import InstanceInstallBundle # noqa
|
|
||||||
|
|
||||||
logger = logging.getLogger('awx.api.views')
|
logger = logging.getLogger('awx.api.views')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user