tqdm: Fix return type of async for loop (#14028)

This commit is contained in:
Mickel Edward
2025-05-13 00:43:48 +07:00
committed by GitHub
parent 8b12b1664b
commit 41b2f9e7b4
+1 -1
View File
@@ -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(