Skip to content

Commit d444f04

Browse files
isaac-philipJohnVillalovos
authored andcommitted
feat(functional): #2547 merge-train api for status and add mr - minor changes
Signed-off-by: Isaac Philip <4974658+isaac-philip@users.noreply.github.com>
1 parent 775cd78 commit d444f04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gitlab/v4/objects/merge_trains.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from gitlab.base import RESTManager, RESTObject
2-
from gitlab.mixins import CRUDMixin, GetMixin, ListMixin, UpdateMethod
2+
from gitlab.mixins import GetMixin, ListMixin, UpdateMethod, UpdateMixin
33
from gitlab.types import RequiredOptional
44

55
__all__ = [
@@ -14,7 +14,7 @@ class ProjectMergeTrainMergeRequest(RESTObject):
1414
pass
1515

1616

17-
class ProjectMergeTrainMergeRequestManager(CRUDMixin, RESTManager):
17+
class ProjectMergeTrainMergeRequestManager(GetMixin, UpdateMixin, RESTManager):
1818
_path = "/projects/{project_id}/merge_trains/merge_requests"
1919
_obj_cls = ProjectMergeTrainMergeRequest
2020
_from_parent_attrs = {"project_id": "project_id"}

0 commit comments

Comments
 (0)