summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/services.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/services.py')
-rw-r--r--gitlab/v4/objects/services.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/v4/objects/services.py b/gitlab/v4/objects/services.py
index 9811a3a..9b8e7f3 100644
--- a/gitlab/v4/objects/services.py
+++ b/gitlab/v4/objects/services.py
@@ -282,7 +282,7 @@ class ProjectServiceManager(GetMixin, UpdateMixin, DeleteMixin, ListMixin, RESTM
"""
obj = cast(
ProjectService,
- super(ProjectServiceManager, self).get(id, lazy=lazy, **kwargs),
+ super().get(id, lazy=lazy, **kwargs),
)
obj.id = id
return obj
@@ -308,7 +308,7 @@ class ProjectServiceManager(GetMixin, UpdateMixin, DeleteMixin, ListMixin, RESTM
GitlabUpdateError: If the server cannot perform the request
"""
new_data = new_data or {}
- result = super(ProjectServiceManager, self).update(id, new_data, **kwargs)
+ result = super().update(id, new_data, **kwargs)
self.id = id
return result