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 /gitlab/v4/objects/settings.py | |
| parent | e8031f42b6804415c4afee4302ab55462d5848ac (diff) | |
| download | gitlab-618267ced7aaff46d8e03057fa0cab48727e5dc0.tar.gz | |
chore: don't explicitly pass args to super()
Diffstat (limited to 'gitlab/v4/objects/settings.py')
| -rw-r--r-- | gitlab/v4/objects/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/settings.py b/gitlab/v4/objects/settings.py index 3694b58..3075d9c 100644 --- a/gitlab/v4/objects/settings.py +++ b/gitlab/v4/objects/settings.py @@ -113,7 +113,7 @@ class ApplicationSettingsManager(GetWithoutIdMixin, UpdateMixin, RESTManager): data = new_data.copy() if "domain_whitelist" in data and data["domain_whitelist"] is None: data.pop("domain_whitelist") - return super(ApplicationSettingsManager, self).update(id, data, **kwargs) + return super().update(id, data, **kwargs) def get( self, id: Optional[Union[int, str]] = None, **kwargs: Any |
