From 0700ec90074113e4930f27cf8e74e644d44e10a2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 04:52:45 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Auto=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/concurrency.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastapi/concurrency.py b/fastapi/concurrency.py index 281647b80..8f5cbf04c 100644 --- a/fastapi/concurrency.py +++ b/fastapi/concurrency.py @@ -17,10 +17,10 @@ _T = TypeVar("_T") @asynccontextmanager async def contextmanager_in_threadpool( """Run a context manager in a thread pool. - + Args: cm: The context manager to run. - + Returns: The result of the context manager. """