Remove unused imports

This commit is contained in:
Hugo 2017-12-18 13:53:01 +02:00
parent a8b7efc776
commit 288f38f26e
3 changed files with 1 additions and 3 deletions

View File

@ -12,7 +12,6 @@ import os
import re
import sys
import textwrap
import warnings
import functools as ft

View File

@ -1,7 +1,6 @@
#! /usr/bin/env python
"""minimal PyPI like server for use with pip/easy_install"""
from collections import namedtuple
import functools
import hashlib
import io

View File

@ -5,7 +5,7 @@ Test module for . . .
from __future__ import (absolute_import, division,
print_function, unicode_literals)
import logging
from os.path import abspath, dirname, join, realpath, relpath
from os.path import abspath, dirname, join, realpath
from sys import path
# Third party imports