diff --git a/docs/guide/rest_framework.txt b/docs/guide/rest_framework.txt index 477d8cb9..9cf77b5e 100644 --- a/docs/guide/rest_framework.txt +++ b/docs/guide/rest_framework.txt @@ -39,7 +39,6 @@ If you want to use the django-filter backend by default, add it to the ``DEFAULT # settings.py INSTALLED_APPS = [ - ... 'rest_framework', 'django_filters', ] @@ -47,7 +46,6 @@ If you want to use the django-filter backend by default, add it to the ``DEFAULT REST_FRAMEWORK = { 'DEFAULT_FILTER_BACKENDS': ( 'django_filters.rest_framework.DjangoFilterBackend', - ... ), }