diff options
| author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-02-01 00:04:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-01 00:04:56 +0100 |
| commit | 7646360d6b622b1008917116dc4f64ced32f4057 (patch) | |
| tree | 8a5032d8ead259ff3d78615bc51140a488f882b6 /gitlab/v4/objects/projects.py | |
| parent | 7a13b9bfa4aead6c731f9a92e0946dba7577c61b (diff) | |
| parent | a57334f1930752c70ea15847a39324fa94042460 (diff) | |
| download | gitlab-7646360d6b622b1008917116dc4f64ced32f4057.tar.gz | |
Merge pull request #1866 from python-gitlab/jlvillal/arrays_2
chore: create new ArrayAttribute class
Diffstat (limited to 'gitlab/v4/objects/projects.py')
| -rw-r--r-- | gitlab/v4/objects/projects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/projects.py b/gitlab/v4/objects/projects.py index 354e56e..23f3d3c 100644 --- a/gitlab/v4/objects/projects.py +++ b/gitlab/v4/objects/projects.py @@ -125,7 +125,7 @@ class ProjectGroupManager(ListMixin, RESTManager): "shared_min_access_level", "shared_visible_only", ) - _types = {"skip_groups": types.CommaSeparatedListAttribute} + _types = {"skip_groups": types.ArrayAttribute} class Project(RefreshMixin, SaveMixin, ObjectDeleteMixin, RepositoryMixin, RESTObject): |
