mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-03-26 02:26:36 +08:00
While `object_list` isn't defined at construction, `BaseListView.get()` sets it when handling a request, so in practice it is defined whenever a list view is doing its work. The Django documentation describes `object_list` as "the list of objects (usually, but not necessarily a queryset)", so I picked `Sequence` as the type. Closes #790