Skip to content

Commit 3514b2b

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

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gitlab/v4/objects/runners.py

Lines changed: 1 addition & 2 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
)
@@ -120,7 +119,7 @@ class GroupRunner(ObjectDeleteMixin, 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)