From 9feb7ac11415c62b7811f9c801349ca33b241308 Mon Sep 17 00:00:00 2001 From: Ben Finney Date: Mon, 31 Oct 2016 12:34:13 +1100 Subject: [PATCH] Remove superfluous and unused imports. --- dput/helper/dputhelper.py | 1 - setup.py | 1 - test/test_dputhelper.py | 3 --- 3 files changed, 5 deletions(-) diff --git a/dput/helper/dputhelper.py b/dput/helper/dputhelper.py index ad10c1b..8ebc03c 100644 --- a/dput/helper/dputhelper.py +++ b/dput/helper/dputhelper.py @@ -9,7 +9,6 @@ """ Helper code for Dput. """ -import io import os import sys import locale diff --git a/setup.py b/setup.py index f0a6206..8a570b3 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,6 @@ from __future__ import (absolute_import, unicode_literals) -import sys import os import os.path import pydoc diff --git a/test/test_dputhelper.py b/test/test_dputhelper.py index 4b91741..cfa4d30 100644 --- a/test/test_dputhelper.py +++ b/test/test_dputhelper.py @@ -18,7 +18,6 @@ import io import subprocess import collections import itertools -import tempfile import doctest import textwrap @@ -40,8 +39,6 @@ from .helper import ( patch_time_time, EXIT_STATUS_SUCCESS, EXIT_STATUS_FAILURE, EXIT_STATUS_COMMAND_NOT_FOUND, - make_fake_file_scenarios, - FileDouble, patch_subprocess_check_call, SubprocessDouble, ) -- 2.11.4.GIT