diff options
-rw-r--r-- | gitlab/v4/objects.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 87a197f..37e818f 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1622,9 +1622,8 @@ class ProjectManager(CRUDMixin, RESTManager): 'order_by', 'sort', 'simple', 'membership', 'statistics') -class GroupProject(RESTObject): - def __init__(self, *args, **kwargs): - Project.__init__(self, *args, **kwargs) +class GroupProject(Project): + pass class GroupProjectManager(GetFromListMixin, RESTManager): |