From e7eb824c975dfa96ca4025d1b3b056276a1c7f5b Mon Sep 17 00:00:00 2001 From: Spencer Brown Date: Thu, 23 Nov 2023 13:09:45 +1000 Subject: [PATCH] The StatusT typevar can't be used here without TVT --- src/trio/_core/_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trio/_core/_run.py b/src/trio/_core/_run.py index 83a07aeacd..5ec58014b6 100644 --- a/src/trio/_core/_run.py +++ b/src/trio/_core/_run.py @@ -1181,7 +1181,7 @@ async def start( async_fn: Callable[..., Awaitable[object]], *args: object, name: object = None, - ) -> StatusT: + ) -> Any: r"""Creates and initializes a child task. Like :meth:`start_soon`, but blocks until the new task has