Ahem. Still running black?
[python_utils.git] / thread_utils.py
index ad1f0bf9029b3232ba9cbd28b085afade91f0186..d8c85f46fbcaed33864d591458c64a1cebeb162d 100644 (file)
@@ -61,9 +61,7 @@ def background_thread(
 
     def wrapper(funct: Callable):
         @functools.wraps(funct)
-        def inner_wrapper(
-            *a, **kwa
-        ) -> Tuple[threading.Thread, threading.Event]:
+        def inner_wrapper(*a, **kwa) -> Tuple[threading.Thread, threading.Event]:
             should_terminate = threading.Event()
             should_terminate.clear()
             newargs = (*a, should_terminate)
@@ -130,9 +128,7 @@ def periodically_invoke(
             should_terminate = threading.Event()
             should_terminate.clear()
             newargs = (should_terminate, *args)
-            thread = threading.Thread(
-                target=helper_thread, args=newargs, kwargs=kwargs
-            )
+            thread = threading.Thread(target=helper_thread, args=newargs, kwargs=kwargs)
             thread.start()
             logger.debug(f'Started thread {thread.name} tid={thread.ident}')
             return (thread, should_terminate)