diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 14:08:28 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 14:08:28 -0400 |
| commit | dcbe64d83ff6c6f60e0fc5756f91c966da930b84 (patch) | |
| tree | 8b890b6dcf091c2bb59203cec692324aedfbfcb1 | |
| parent | 45112961a7fa764f5a26663563da5ff84abb4dc1 (diff) | |
| download | python-setuptools-git-dcbe64d83ff6c6f60e0fc5756f91c966da930b84.tar.gz | |
Remove unused import and reorganize imports of modules.
| -rw-r--r-- | command/sdist.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/command/sdist.py b/command/sdist.py index 690bd66f..c13dbbf8 100644 --- a/command/sdist.py +++ b/command/sdist.py @@ -8,7 +8,9 @@ from glob import glob from warnings import warn from distutils.core import Command -from distutils import dir_util, dep_util, file_util, archive_util +from distutils import dir_util +from distutils import file_util +from distutils import archive_util from distutils.text_file import TextFile from distutils.filelist import FileList from distutils import log |
