Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions django-stubs/db/models/query.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import datetime
from collections.abc import AsyncIterator, Collection, Iterable, Iterator, MutableMapping, Reversible, Sequence, Sized
from collections.abc import AsyncIterator, Collection, Iterable, Iterator, MutableMapping, Sequence, Sized
from typing import Any, Generic, NamedTuple, TypeVar, overload

from django.db.backends.utils import _ExecuteQuery
Expand Down Expand Up @@ -43,7 +43,7 @@ class NamedValuesListIterable(ValuesListIterable[NamedTuple]):
class FlatValuesListIterable(BaseIterable[_Row]):
def __iter__(self) -> Iterator[_Row]: ...

class _QuerySet(Generic[_T, _Row], Reversible[_Row], Iterable[_Row], Sized):
class _QuerySet(Generic[_T, _Row], Iterable[_Row], Sized):
model: type[_T]
query: Query
_iterable_class: type[BaseIterable]
Expand Down