Skip to content

Commit

Permalink
Fix GroupProject constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauvain Pocentek committed Jun 24, 2017
1 parent 6e5a6ec commit afe4b05
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions gitlab/v4/objects.py
Expand Up @@ -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):
Expand Down

0 comments on commit afe4b05

Please sign in to comment.