justheuristic пре 5 година
родитељ
комит
ebe07eebfd
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tesseract/utils/threading.py

+ 1 - 1
tesseract/utils/threading.py

@@ -3,7 +3,7 @@ from threading import Thread
 
 
 def run_in_background(func: callable, *args, **kwargs) -> Future:
-    """ run f(*args, **kwargs) in background and return Future for its outputs """
+    """ run func(*args, **kwargs) in background and return Future for its outputs """
     future = Future()
 
     def _run():