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. """