You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
0 commit comments