From e6f32fdd9b373dfcd100c7accb41f57d83c2f0a1 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 26 Jan 2022 21:35:20 -0800 Subject: Ahem. Still running black? --- thread_utils.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'thread_utils.py') diff --git a/thread_utils.py b/thread_utils.py index ad1f0bf..d8c85f4 100644 --- a/thread_utils.py +++ b/thread_utils.py @@ -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) -- cgit v1.3