Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add object_list to BaseListView (#833)
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
- Loading branch information