summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/epics.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/epics.py')
-rw-r--r--gitlab/v4/objects/epics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/epics.py b/gitlab/v4/objects/epics.py
index bb0bb79..d33821c 100644
--- a/gitlab/v4/objects/epics.py
+++ b/gitlab/v4/objects/epics.py
@@ -42,7 +42,7 @@ class GroupEpicManager(CRUDMixin, RESTManager):
_update_attrs = RequiredOptional(
optional=("title", "labels", "description", "start_date", "end_date"),
)
- _types = {"labels": types.ListAttribute}
+ _types = {"labels": types.CommaSeparatedListAttribute}
def get(self, id: Union[str, int], lazy: bool = False, **kwargs: Any) -> GroupEpic:
return cast(GroupEpic, super().get(id=id, lazy=lazy, **kwargs))