Skip to content

Commit

Permalink
Remove unused future.division import
Browse files Browse the repository at this point in the history
We don't do math.
  • Loading branch information
Gauvain Pocentek committed Jun 11, 2017
1 parent 32c704c commit 2a0afc5
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion gitlab/__init__.py
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion gitlab/cli.py
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion gitlab/tests/test_gitlabobject.py
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion gitlab/v3/objects.py
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion gitlab/v4/objects.py
Expand Up @@ -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
Expand Down

0 comments on commit 2a0afc5

Please sign in to comment.