From 53a764530cc3c6411034a3798f794545881d341e Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Mon, 15 Feb 2021 14:50:52 -0800 Subject: refactor: move Gitlab and GitlabList to gitlab/client.py Move the classes Gitlab and GitlabList from gitlab/__init__.py to the newly created gitlab/client.py file. Update one test case that was depending on requests being defined in gitlab/__init__.py --- gitlab/tests/test_gitlab_http_methods.py | 1 + 1 file changed, 1 insertion(+) (limited to 'gitlab/tests/test_gitlab_http_methods.py') diff --git a/gitlab/tests/test_gitlab_http_methods.py b/gitlab/tests/test_gitlab_http_methods.py index fac89b9..253ad16 100644 --- a/gitlab/tests/test_gitlab_http_methods.py +++ b/gitlab/tests/test_gitlab_http_methods.py @@ -1,4 +1,5 @@ import pytest +import requests from httmock import HTTMock, urlmatch, response -- cgit v1.2.1