From 41b2f9e7b4f0494b26052552d590886ed524b4aa Mon Sep 17 00:00:00 2001 From: Mickel Edward Date: Tue, 13 May 2025 00:43:48 +0700 Subject: [PATCH] tqdm: Fix return type of `async for` loop (#14028) --- stubs/tqdm/tqdm/asyncio.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/tqdm/tqdm/asyncio.pyi b/stubs/tqdm/tqdm/asyncio.pyi index 78161f0d4..c0c1af4f3 100644 --- a/stubs/tqdm/tqdm/asyncio.pyi +++ b/stubs/tqdm/tqdm/asyncio.pyi @@ -16,7 +16,7 @@ class tqdm_asyncio(std_tqdm[_T]): iterable_iterator: Iterator[_T] def __aiter__(self) -> Self: ... - async def __anext__(self) -> Awaitable[_T]: ... + async def __anext__(self) -> _T: ... def send(self, *args, **kwargs): ... @classmethod def as_completed(