Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Queryset.aiterator() was set up to by annotated as `async () -> Iterator` which implies the call semantics are ``` for obj in await queryset.aiterator(): ... ``` But what we actually want is ``` async for obj in queryset.aiterator(): ... ``` Updated signature to match Django
- Loading branch information