Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 66d8f30

Browse files
author
Gauvain Pocentek
authoredMay 19, 2018
Merge pull request python-gitlab#500 from ericfrederich/efficient_get
More efficient .get() for group members.
2 parents 4cc9739 + dabfeb3 commit 66d8f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎gitlab/v4/objects.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ class GroupMember(SaveMixin, ObjectDeleteMixin, RESTObject):
547547
_short_print_attr = 'username'
548548

549549

550-
class GroupMemberManager(GetFromListMixin, CreateMixin, UpdateMixin,
550+
class GroupMemberManager(ListMixin, GetMixin, CreateMixin, UpdateMixin,
551551
DeleteMixin, RESTManager):
552552
_path = '/groups/%(group_id)s/members'
553553
_obj_cls = GroupMember

0 commit comments

Comments
 (0)
Failed to load comments.