diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-05-31 16:58:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 16:58:22 +0200 |
commit | 37eb8e0a4f0fd5fc7e221163b84df3461e64475b (patch) | |
tree | af198b756ca6879f0104be2b0857fa1cfee9e694 /gitlab/v4/objects/boards.py | |
parent | 1f17349826a0516c648db20ae80ac713bab8a160 (diff) | |
parent | 7d26530640eb406479f1604cb64748d278081864 (diff) | |
download | gitlab-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/boards.py')
-rw-r--r-- | gitlab/v4/objects/boards.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gitlab/v4/objects/boards.py b/gitlab/v4/objects/boards.py index 73c652b..a5c59b3 100644 --- a/gitlab/v4/objects/boards.py +++ b/gitlab/v4/objects/boards.py @@ -1,7 +1,8 @@ from typing import Any, cast, Union -from gitlab.base import RequiredOptional, RESTManager, RESTObject +from gitlab.base import RESTManager, RESTObject from gitlab.mixins import CRUDMixin, ObjectDeleteMixin, SaveMixin +from gitlab.types import RequiredOptional __all__ = [ "GroupBoardList", |