diff --git a/stdlib/asyncio/staggered.pyi b/stdlib/asyncio/staggered.pyi index d5b9156a1..fc4bfad76 100644 --- a/stdlib/asyncio/staggered.pyi +++ b/stdlib/asyncio/staggered.pyi @@ -2,6 +2,8 @@ from typing import Any, Awaitable, Callable, Iterable from . import events +__all__ = ("staggered_race",) + async def staggered_race( coro_fns: Iterable[Callable[[], Awaitable[Any]]], delay: float | None, *, loop: events.AbstractEventLoop | None = ... ) -> tuple[Any, int | None, list[Exception | None]]: ...