Type-Hint some files that were not type-hinted #101

Open
Sengolda wants to merge 16 commits from unknown repository into 2.0
Showing only changes of commit c2184fe244 - Show all commits

View File

@@ -515,7 +515,7 @@ async def maybe_coroutine(f, *args, **kwargs):
return value
async def async_all(gen, *, check=_isawaitable):
async def async_all(gen, *, check=_isawaitable) -> bool:
for elem in gen:
if check(elem):
elem = await elem