diff options
author | 2020-07-22 17:34:59 -0700 | |
---|---|---|
committer | 2020-07-22 19:59:00 -0700 | |
commit | be20b37180f709ab0e451e4e07b6e82ac3a87b56 (patch) | |
tree | 7a2ce667c62a402d554b1e96f68b21ba1992735d /lib/portage/_emirrordist/FetchTask.py | |
parent | _EbuildFetcherProcess: emit eerror for fetch failure in _proc_join_done (diff) | |
download | portage-be20b37180f709ab0e451e4e07b6e82ac3a87b56.tar.gz portage-be20b37180f709ab0e451e4e07b6e82ac3a87b56.tar.bz2 portage-be20b37180f709ab0e451e4e07b6e82ac3a87b56.zip |
Fix 'unused-import' for stdlib imports.
This is part of a cleanup to enable pylint. This is only stdlib modules;
there are hundreds of unused imports of other modules but its less clear
how safe those are to remove due to side effects.
Signed-off-by: Alec Warner <antarus@gentoo.org>
Change-Id: If9bee83bbbe1620b34a0f8d153637909af2b8512
Closes: https://github.com/gentoo/portage/pull/585
Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to 'lib/portage/_emirrordist/FetchTask.py')
-rw-r--r-- | lib/portage/_emirrordist/FetchTask.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/portage/_emirrordist/FetchTask.py b/lib/portage/_emirrordist/FetchTask.py index a1ba58822..f2cf2aa20 100644 --- a/lib/portage/_emirrordist/FetchTask.py +++ b/lib/portage/_emirrordist/FetchTask.py @@ -7,9 +7,7 @@ import collections import errno import logging import random -import stat import subprocess -import sys import portage from portage import _encodings, _unicode_encode |