diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-06-11 19:19:22 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-06-11 19:19:22 +0200 |
commit | 2a0afc50311c727ee3bef700553fb60924439ef4 (patch) | |
tree | e76cc0a3244a086f7ceec705102aef9a37b48dab | |
parent | 32c704c7737f0699e1c6979c6b4a8798ae41e930 (diff) | |
download | gitlab-2a0afc50311c727ee3bef700553fb60924439ef4.tar.gz |
Remove unused future.division import
We don't do math.
-rw-r--r-- | gitlab/__init__.py | 1 | ||||
-rw-r--r-- | gitlab/cli.py | 1 | ||||
-rw-r--r-- | gitlab/tests/test_gitlabobject.py | 1 | ||||
-rw-r--r-- | gitlab/v3/objects.py | 1 | ||||
-rw-r--r-- | gitlab/v4/objects.py | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index e6a151a..d5aa92d 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -17,7 +17,6 @@ """Wrapper for the GitLab API.""" from __future__ import print_function -from __future__ import division from __future__ import absolute_import import importlib import inspect diff --git a/gitlab/cli.py b/gitlab/cli.py index 8cc89c2..142ccfa 100644 --- a/gitlab/cli.py +++ b/gitlab/cli.py @@ -17,7 +17,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. from __future__ import print_function -from __future__ import division from __future__ import absolute_import import argparse import inspect diff --git a/gitlab/tests/test_gitlabobject.py b/gitlab/tests/test_gitlabobject.py index 3bffb82..695f900 100644 --- a/gitlab/tests/test_gitlabobject.py +++ b/gitlab/tests/test_gitlabobject.py @@ -18,7 +18,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. from __future__ import print_function -from __future__ import division from __future__ import absolute_import import json diff --git a/gitlab/v3/objects.py b/gitlab/v3/objects.py index 84b9cb5..68c2858 100644 --- a/gitlab/v3/objects.py +++ b/gitlab/v3/objects.py @@ -16,7 +16,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. from __future__ import print_function -from __future__ import division from __future__ import absolute_import import base64 import json diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index b276368..f3d1dce 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -16,7 +16,6 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. from __future__ import print_function -from __future__ import division from __future__ import absolute_import import base64 import json |