justheuristic 5 years ago
parent
commit
ebe07eebfd
1 changed files with 1 additions and 1 deletions
  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():