summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/clusters.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/clusters.py')
-rw-r--r--gitlab/v4/objects/clusters.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gitlab/v4/objects/clusters.py b/gitlab/v4/objects/clusters.py
index e4146df..dc02ee0 100644
--- a/gitlab/v4/objects/clusters.py
+++ b/gitlab/v4/objects/clusters.py
@@ -51,8 +51,8 @@ class GroupClusterManager(CRUDMixin, RESTManager):
GitlabCreateError: If the server cannot perform the request
Returns:
- RESTObject: A new instance of the manage object class build with
- the data sent by the server
+ A new instance of the manage object class build with
+ the data sent by the server
"""
path = f"{self.path}/user"
return cast(GroupCluster, CreateMixin.create(self, data, path=path, **kwargs))
@@ -102,8 +102,8 @@ class ProjectClusterManager(CRUDMixin, RESTManager):
GitlabCreateError: If the server cannot perform the request
Returns:
- RESTObject: A new instance of the manage object class build with
- the data sent by the server
+ A new instance of the manage object class build with
+ the data sent by the server
"""
path = f"{self.path}/user"
return cast(ProjectCluster, CreateMixin.create(self, data, path=path, **kwargs))