We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Paginator
1 parent e5d2d5d commit ffcf807Copy full SHA for ffcf807
django-stubs/core/paginator.pyi
@@ -51,12 +51,12 @@ class Paginator(Generic[_T]):
51
class Page(Sequence[_T]):
52
object_list: _SupportsPagination[_T]
53
number: int
54
- paginator: Paginator
+ paginator: Paginator[_T]
55
def __init__(
56
self,
57
object_list: _SupportsPagination[_T],
58
number: int,
59
- paginator: Paginator,
+ paginator: Paginator[_T],
60
) -> None: ...
61
@overload
62
def __getitem__(self, index: int) -> _T: ...
0 commit comments