diff options
author | John L. Villalovos <john@sodarock.com> | 2021-02-26 13:01:47 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-02-26 13:01:47 -0800 |
commit | 39b918374b771f1d417196ca74fa04fe3968c412 (patch) | |
tree | 29a1677d8ec0adb0b5c8117cea680ba2ded1031e | |
parent | cbd4f1e73afc8eea0b75c0b5a8734886cb081c1b (diff) | |
download | gitlab-39b918374b771f1d417196ca74fa04fe3968c412.tar.gz |
chore: remove import of gitlab.utils from __init__.py
Initially when extracting out the gitlab/client.py code we tried to
remove this but functional tests failed.
Later we fixed the functional test that was failing, so now remove the
unneeded import.
-rw-r--r-- | gitlab/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 2802615..b264e5a 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -30,7 +30,6 @@ from gitlab.__version__ import ( from gitlab.client import Gitlab, GitlabList from gitlab.const import * # noqa from gitlab.exceptions import * # noqa -from gitlab import utils # noqa warnings.filterwarnings("default", category=DeprecationWarning, module="^gitlab") |