diff options
author | Max Wittig <max.wittig@siemens.com> | 2019-12-18 13:14:54 +0100 |
---|---|---|
committer | Max Wittig <max.wittig@siemens.com> | 2019-12-18 13:50:19 +0100 |
commit | 9fb46454c6dab1a86ab4492df2368ed74badf7d6 (patch) | |
tree | f2647a64b1fe8309b5c3854575a1b4c4b8a33f82 /gitlab/config.py | |
parent | af8679ac5c2c2b7774d624bdb1981d0e2374edc1 (diff) | |
download | gitlab-9fb46454c6dab1a86ab4492df2368ed74badf7d6.tar.gz |
refactor: remove six dependency
Diffstat (limited to 'gitlab/config.py')
-rw-r--r-- | gitlab/config.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gitlab/config.py b/gitlab/config.py index 4b4d6fd..b2c0dbf 100644 --- a/gitlab/config.py +++ b/gitlab/config.py @@ -16,8 +16,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. import os - -from six.moves import configparser +import configparser _DEFAULT_FILES = ["/etc/python-gitlab.cfg", os.path.expanduser("~/.python-gitlab.cfg")] |