瀏覽代碼

unused imports

justheuristic 5 年之前
父節點
當前提交
88d1bdc025
共有 1 個文件被更改,包括 2 次插入4 次删除
  1. 2 4
      tesseract/utils/threading.py

+ 2 - 4
tesseract/utils/threading.py

@@ -1,7 +1,5 @@
-import time
-from concurrent.futures import Future, TimeoutError
-from itertools import count
-from threading import Thread, Event, Lock
+from concurrent.futures import Future
+from threading import Thread
 
 
 def run_in_background(func: callable, *args, **kwargs) -> Future: