From 815844de71a3f178bcb7a74b0210c46b6888576b Mon Sep 17 00:00:00 2001 From: Ivan Sitkin Date: Mon, 22 May 2023 13:16:41 +0300 Subject: [PATCH] feat: null commit --- aiomisc/thread_pool.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aiomisc/thread_pool.py b/aiomisc/thread_pool.py index 578826c4..f680b538 100644 --- a/aiomisc/thread_pool.py +++ b/aiomisc/thread_pool.py @@ -24,6 +24,7 @@ P = ParamSpec("P") T = TypeVar("T") F = TypeVar("F", bound=Callable[..., Any]) + log = logging.getLogger(__name__)