From 2722234d163a313d35471f1f7c8a44cd151fc095 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sat, 29 Aug 2020 09:04:07 +0200 Subject: [PATCH] threadutil imports not used These imports are not used. Backported from: https://github.com/thekix/offlineimap/commit/a655fa4fc270d944607c6c1b0689f19ea3acf016 Signed-off-by: Nicolas Sebrecht --- offlineimap/threadutil.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/offlineimap/threadutil.py b/offlineimap/threadutil.py index 0df5a21..e949e17 100644 --- a/offlineimap/threadutil.py +++ b/offlineimap/threadutil.py @@ -15,13 +15,12 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -from threading import Lock, Thread, BoundedSemaphore, currentThread +from threading import Lock, Thread, BoundedSemaphore try: from Queue import Queue, Empty except ImportError: # python3 from queue import Queue, Empty import traceback -import os.path from offlineimap.ui import getglobalui