Fixed #30036 -- Removed unused imports in pagination example.

This commit is contained in:
Carlton Gibson 2018-12-12 18:49:47 +01:00 committed by GitHub
parent 3a4558b84f
commit a394289b58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ show how you can display the results. This example assumes you have a
The view function looks like this::
from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator
from django.core.paginator import Paginator
from django.shortcuts import render
def listing(request):