diff --git a/django-stubs/views/generic/list.pyi b/django-stubs/views/generic/list.pyi index b8c8d0204..0775a13d8 100644 --- a/django-stubs/views/generic/list.pyi +++ b/django-stubs/views/generic/list.pyi @@ -30,6 +30,7 @@ class MultipleObjectMixin(Generic[T], ContextMixin): def get_context_object_name(self, object_list: QuerySet) -> Optional[str]: ... class BaseListView(MultipleObjectMixin[T], View): + object_list: Sequence[T] def get(self, request: HttpRequest, *args: Any, **kwargs: Any) -> HttpResponse: ... class MultipleObjectTemplateResponseMixin(TemplateResponseMixin):