Skip to content

Commit 512d862

Browse files
author
Léo GATELLIER
committed
fix(api): delete 'group-runner get' and 'group-runner delete' commands
1 parent 7cdb07d commit 512d862

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

gitlab/v4/objects/runners.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
CRUDMixin,
88
DeleteMixin,
99
ListMixin,
10-
NoUpdateMixin,
1110
ObjectDeleteMixin,
1211
SaveMixin,
1312
)
@@ -116,11 +115,11 @@ def verify(self, token, **kwargs):
116115
self.gitlab.http_post(path, post_data=post_data, **kwargs)
117116

118117

119-
class GroupRunner(ObjectDeleteMixin, RESTObject):
118+
class GroupRunner(RESTObject):
120119
pass
121120

122121

123-
class GroupRunnerManager(NoUpdateMixin, RESTManager):
122+
class GroupRunnerManager(ListMixin, RESTManager):
124123
_path = "/groups/%(group_id)s/runners"
125124
_obj_cls = GroupRunner
126125
_from_parent_attrs = {"group_id": "id"}

0 commit comments

Comments
 (0)