diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-06-18 13:11:12 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-06-18 13:11:12 +0200 |
commit | 6e5a6ec1f7c2993697c359b2bcab0e1324e219bc (patch) | |
tree | 0c4bbb6579ce48e5bd9c68e410d4db88b316847c /gitlab/v4/objects.py | |
parent | 1922cd5d9b182902586170927acb758f8a6f614c (diff) | |
download | gitlab-6e5a6ec1f7c2993697c359b2bcab0e1324e219bc.tar.gz |
minor doc updates
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 2370de0..87a197f 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1648,7 +1648,7 @@ class Group(SaveMixin, ObjectDeleteMixin, RESTObject): def transfer_project(self, id, **kwargs): """Transfers a project to this group. - Attrs: + Args: id (int): ID of the project to transfer. """ path = '/groups/%d/projects/%d' % (self.id, id) |