summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/groups.py
diff options
context:
space:
mode:
authorNejc Habjan <nejc.habjan@siemens.com>2022-05-31 16:58:22 +0200
committerGitHub <noreply@github.com>2022-05-31 16:58:22 +0200
commit37eb8e0a4f0fd5fc7e221163b84df3461e64475b (patch)
treeaf198b756ca6879f0104be2b0857fa1cfee9e694 /gitlab/v4/objects/groups.py
parent1f17349826a0516c648db20ae80ac713bab8a160 (diff)
parent7d26530640eb406479f1604cb64748d278081864 (diff)
downloadgitlab-37eb8e0a4f0fd5fc7e221163b84df3461e64475b.tar.gz
Merge pull request #2039 from python-gitlab/jlvillal/required_optional
chore: move `RequiredOptional` to the `gitlab.types` module
Diffstat (limited to 'gitlab/v4/objects/groups.py')
-rw-r--r--gitlab/v4/objects/groups.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gitlab/v4/objects/groups.py b/gitlab/v4/objects/groups.py
index 28f3623..33f5be1 100644
--- a/gitlab/v4/objects/groups.py
+++ b/gitlab/v4/objects/groups.py
@@ -6,8 +6,9 @@ import gitlab
from gitlab import cli
from gitlab import exceptions as exc
from gitlab import types
-from gitlab.base import RequiredOptional, RESTManager, RESTObject
+from gitlab.base import RESTManager, RESTObject
from gitlab.mixins import CRUDMixin, ListMixin, ObjectDeleteMixin, SaveMixin
+from gitlab.types import RequiredOptional
from .access_requests import GroupAccessRequestManager # noqa: F401
from .audit_events import GroupAuditEventManager # noqa: F401