summaryrefslogtreecommitdiff
path: root/gitlab/v3/objects.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-08-11 16:06:42 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2017-08-11 16:06:42 +0200
commit80eab7b0c0682c5df99495acc4d6f71f36603cfc (patch)
treed0a2a111d56abd2a47c4dbd6ce6507c826644d9b /gitlab/v3/objects.py
parent72e783de6b6e93e24dd93f5ac28383c2893bd7a6 (diff)
downloadgitlab-80eab7b0c0682c5df99495acc4d6f71f36603cfc.tar.gz
Fix Args attribute in docstrings
Diffstat (limited to 'gitlab/v3/objects.py')
-rw-r--r--gitlab/v3/objects.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitlab/v3/objects.py b/gitlab/v3/objects.py
index 69a9721..94c3873 100644
--- a/gitlab/v3/objects.py
+++ b/gitlab/v3/objects.py
@@ -423,7 +423,7 @@ class GroupAccessRequest(GitlabObject):
def approve(self, access_level=gitlab.DEVELOPER_ACCESS, **kwargs):
"""Approve an access request.
- Attrs:
+ Args:
access_level (int): The access level for the user.
Raises:
@@ -1720,7 +1720,7 @@ class ProjectAccessRequest(GitlabObject):
def approve(self, access_level=gitlab.DEVELOPER_ACCESS, **kwargs):
"""Approve an access request.
- Attrs:
+ Args:
access_level (int): The access level for the user.
Raises:
@@ -2278,7 +2278,7 @@ class Group(GitlabObject):
def transfer_project(self, id, **kwargs):
"""Transfers a project to this new groups.
- Attrs:
+ Args:
id (int): ID of the project to transfer.
Raises: