From d2ad02c12e8619c5412bfcda820feb6dc5c63645 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 23:33:45 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- kr8s/_async_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kr8s/_async_utils.py b/kr8s/_async_utils.py index 2165526..eae4538 100644 --- a/kr8s/_async_utils.py +++ b/kr8s/_async_utils.py @@ -92,7 +92,7 @@ def call(self, func: Callable[P, Awaitable[T]], *args, **kwargs) -> T: def run_sync( - coro: Callable[P, AsyncGenerator | Awaitable[T]] + coro: Callable[P, AsyncGenerator | Awaitable[T]], ) -> Callable[P, Generator | T]: """Wraps a coroutine in a function that blocks until it has executed.