Skip to content

Commit

Permalink
Fix aiterator() signature.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-parton committed Aug 16, 2024
1 parent b080569 commit d40f097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/db/models/query.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class _BaseQuerySet(Generic[_T], Sized):
def __and__(self, other: _BaseQuerySet[_T]) -> Self: ...
def __or__(self, other: _BaseQuerySet[_T]) -> Self: ...
def iterator(self, chunk_size: int = ...) -> Iterator[_T]: ...
async def aiterator(self, chunk_size: int = ...) -> Iterator[_T]: ...
def aiterator(self, chunk_size: int = ...) -> AsyncIterator[_T]: ...
def aggregate(self, *args: Any, **kwargs: Any) -> dict[str, Any]: ...
async def aaggregate(self, *args: Any, **kwargs: Any) -> dict[str, Any]: ...
def get(self, *args: Any, **kwargs: Any) -> _T: ...
Expand Down

0 comments on commit d40f097

Please sign in to comment.