diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-05-16 15:13:22 +0200 |
---|---|---|
committer | Max Wittig <max.wittig@siemens.com> | 2020-05-16 15:13:22 +0200 |
commit | ee2df6f1757658cae20cc1d9dd75be599cf19997 (patch) | |
tree | ec6e2fe22ef1e7916fe7d456d4dd19f2a39d87d1 /gitlab | |
parent | 74b3ddcd5d44c4fe6c7c0189f87852d861e807f0 (diff) | |
download | gitlab-fix/duplicate-code.tar.gz |
fix(config): fix duplicate codefix/duplicate-code
Fixes #1094
Diffstat (limited to 'gitlab')
-rw-r--r-- | gitlab/config.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gitlab/config.py b/gitlab/config.py index fa2593b..c8ba896 100644 --- a/gitlab/config.py +++ b/gitlab/config.py @@ -145,14 +145,6 @@ class GitlabConfigParser(object): except Exception: pass - self.http_username = None - self.http_password = None - try: - self.http_username = self._config.get(self.gitlab_id, "http_username") - self.http_password = self._config.get(self.gitlab_id, "http_password") - except Exception: - pass - self.api_version = "4" try: self.api_version = self._config.get("global", "api_version") |