mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-06 21:43:59 +08:00
tqdm: Fix return type of async for loop (#14028)
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user