X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=thread_utils.py;fp=thread_utils.py;h=2375f3df3938b6a5562911af28202a909b0a0cd7;hb=2e2eab8453f1d7f85236f306283e2987562995d0;hp=4db4cf68b4ef916f323f90bae492d1c59dca361f;hpb=2f5b47c8b30d1b7d86443391332be2f3805cdafd;p=python_utils.git diff --git a/thread_utils.py b/thread_utils.py index 4db4cf6..2375f3d 100644 --- a/thread_utils.py +++ b/thread_utils.py @@ -6,7 +6,7 @@ import functools import logging import os import threading -from typing import Callable, Optional, Tuple +from typing import Any, Callable, Optional, Tuple # This module is commonly used by others in here and should avoid # taking any unnecessary dependencies back on them. @@ -62,7 +62,7 @@ def is_current_thread_main_thread() -> bool: def background_thread( - _funct: Optional[Callable], + _funct: Optional[Callable[..., Any]], ) -> Callable[..., Tuple[threading.Thread, threading.Event]]: """A function decorator to create a background thread.