summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/groups.py
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2021-05-22 08:55:19 -0700
committerJohn L. Villalovos <john@sodarock.com>2021-05-25 11:54:51 -0700
commitf3afd34260d681bbeec974b67012b90d407b7014 (patch)
tree1e6131c02a5276abf26f72618ec0b0c86fd04ea2 /gitlab/v4/objects/groups.py
parentdda646e8f2ecb733e37e6cffec331b783b64714e (diff)
downloadgitlab-f3afd34260d681bbeec974b67012b90d407b7014.tar.gz
chore: fix import ordering using isort
Fix the import ordering using isort. https://pycqa.github.io/isort/
Diffstat (limited to 'gitlab/v4/objects/groups.py')
-rw-r--r--gitlab/v4/objects/groups.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py
index 574c57b..8c1b681 100644
--- a/gitlab/v4/objects/groups.py
+++ b/gitlab/v4/objects/groups.py
@@ -1,17 +1,21 @@
-from gitlab import cli, types
+from gitlab import cli
from gitlab import exceptions as exc
+from gitlab import types
from gitlab.base import RequiredOptional, RESTManager, RESTObject
from gitlab.mixins import CRUDMixin, ListMixin, ObjectDeleteMixin, SaveMixin
+
from .access_requests import GroupAccessRequestManager # noqa: F401
from .audit_events import GroupAuditEventManager # noqa: F401
from .badges import GroupBadgeManager # noqa: F401
from .boards import GroupBoardManager # noqa: F401
+from .clusters import GroupClusterManager # noqa: F401
from .custom_attributes import GroupCustomAttributeManager # noqa: F401
-from .export_import import GroupExportManager, GroupImportManager # noqa: F401
+from .deploy_tokens import GroupDeployTokenManager # noqa: F401
from .epics import GroupEpicManager # noqa: F401
+from .export_import import GroupExportManager, GroupImportManager # noqa: F401
from .issues import GroupIssueManager # noqa: F401
from .labels import GroupLabelManager # noqa: F401
-from .members import GroupMemberManager, GroupMemberAllManager # noqa: F401
+from .members import GroupMemberAllManager, GroupMemberManager # noqa: F401
from .merge_requests import GroupMergeRequestManager # noqa: F401
from .milestones import GroupMilestoneManager # noqa: F401
from .notification_settings import GroupNotificationSettingsManager # noqa: F401
@@ -19,9 +23,6 @@ from .packages import GroupPackageManager # noqa: F401
from .projects import GroupProjectManager # noqa: F401
from .runners import GroupRunnerManager # noqa: F401
from .variables import GroupVariableManager # noqa: F401
-from .clusters import GroupClusterManager # noqa: F401
-from .deploy_tokens import GroupDeployTokenManager # noqa: F401
-
__all__ = [
"Group",