summaryrefslogtreecommitdiff
path: root/gitlab/config.py
diff options
context:
space:
mode:
authorNejc Habjan <nejc.habjan@siemens.com>2022-01-22 04:04:38 +0100
committerJohn Villalovos <john@sodarock.com>2022-01-23 07:14:49 -0800
commitae2a015db1017d3bf9b5f1c5893727da9b0c937f (patch)
treed7fac15dfee5cf5b4168738fcfbe799765d42681 /gitlab/config.py
parent39e74355816700f101cd9bedd10a2873c2cdce1a (diff)
downloadgitlab-ae2a015db1017d3bf9b5f1c5893727da9b0c937f.tar.gz
chore: remove old-style classes
Diffstat (limited to 'gitlab/config.py')
-rw-r--r--gitlab/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/config.py b/gitlab/config.py
index c11a4e9..c85d7e5 100644
--- a/gitlab/config.py
+++ b/gitlab/config.py
@@ -101,7 +101,7 @@ class GitlabConfigHelperError(ConfigError):
pass
-class GitlabConfigParser(object):
+class GitlabConfigParser:
def __init__(
self, gitlab_id: Optional[str] = None, config_files: Optional[List[str]] = None
) -> None: