diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-08-26 11:01:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 11:01:17 +0200 |
commit | a7e44a0bb3629f776a52967d56ba67d9a61346eb (patch) | |
tree | 24fb533a60a84e71386cc500d6ac2f00548f96ac /gitlab/v4 | |
parent | e2dc9ece1a0af37073c41bfa8161fcec5fa01234 (diff) | |
parent | 204782a117f77f367dee87aa2c70822587829147 (diff) | |
download | gitlab-a7e44a0bb3629f776a52967d56ba67d9a61346eb.tar.gz |
Merge pull request #1078 from python-gitlab/refactor/split-unit-tests
Refactor: split unit tests by API resources
Diffstat (limited to 'gitlab/v4')
-rw-r--r-- | gitlab/v4/cli.py | 1 | ||||
-rw-r--r-- | gitlab/v4/objects.py | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/gitlab/v4/cli.py b/gitlab/v4/cli.py index a875261..51416f1 100644 --- a/gitlab/v4/cli.py +++ b/gitlab/v4/cli.py @@ -16,7 +16,6 @@ # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -from __future__ import print_function import inspect import operator import sys diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 2f3e8a5..2a3615f 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -15,8 +15,6 @@ # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -from __future__ import print_function -from __future__ import absolute_import import base64 from gitlab.base import * # noqa |