소스 검색

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: