diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-01-23 01:15:21 +0100 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-01-23 07:14:49 -0800 |
commit | 618267ced7aaff46d8e03057fa0cab48727e5dc0 (patch) | |
tree | ee4921cf73a743821bf4cb9b01a8728f9e1dfa64 /docs/ext/docstrings.py | |
parent | e8031f42b6804415c4afee4302ab55462d5848ac (diff) | |
download | gitlab-618267ced7aaff46d8e03057fa0cab48727e5dc0.tar.gz |
chore: don't explicitly pass args to super()
Diffstat (limited to 'docs/ext/docstrings.py')
-rw-r--r-- | docs/ext/docstrings.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/ext/docstrings.py b/docs/ext/docstrings.py index fc1c10b..7fb24f8 100644 --- a/docs/ext/docstrings.py +++ b/docs/ext/docstrings.py @@ -48,9 +48,7 @@ class GitlabDocstring(GoogleDocstring): def __init__( self, docstring, config=None, app=None, what="", name="", obj=None, options=None ): - super(GitlabDocstring, self).__init__( - docstring, config, app, what, name, obj, options - ) + super().__init__(docstring, config, app, what, name, obj, options) if name.startswith("gitlab.v4.objects") and name.endswith("Manager"): self._parsed_lines.extend(self._build_doc("manager_tmpl.j2", cls=self._obj)) |