summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/files.py
diff options
context:
space:
mode:
authorNejc Habjan <nejc.habjan@siemens.com>2022-01-23 01:15:21 +0100
committerJohn Villalovos <john@sodarock.com>2022-01-23 07:14:49 -0800
commit618267ced7aaff46d8e03057fa0cab48727e5dc0 (patch)
treeee4921cf73a743821bf4cb9b01a8728f9e1dfa64 /gitlab/v4/objects/files.py
parente8031f42b6804415c4afee4302ab55462d5848ac (diff)
downloadgitlab-618267ced7aaff46d8e03057fa0cab48727e5dc0.tar.gz
chore: don't explicitly pass args to super()
Diffstat (limited to 'gitlab/v4/objects/files.py')
-rw-r--r--gitlab/v4/objects/files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/files.py b/gitlab/v4/objects/files.py
index 4ff5b3a..435e71b 100644
--- a/gitlab/v4/objects/files.py
+++ b/gitlab/v4/objects/files.py
@@ -57,7 +57,7 @@ class ProjectFile(SaveMixin, ObjectDeleteMixin, RESTObject):
self.branch = branch
self.commit_message = commit_message
self.file_path = utils.EncodedId(self.file_path)
- super(ProjectFile, self).save(**kwargs)
+ super().save(**kwargs)
@exc.on_http_error(exc.GitlabDeleteError)
# NOTE(jlvillal): Signature doesn't match DeleteMixin.delete() so ignore