From 1f9d2165b92aae032aba0d1ba7f92fc8f0138f95 Mon Sep 17 00:00:00 2001 From: Georg Baumann Date: Fri, 15 Dec 2017 16:33:08 +0100 Subject: [PATCH] removed white space in blank line (caused flake8 to fail) --- rest_framework/documentation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/documentation.py b/rest_framework/documentation.py index d9e40d070..7bafe265f 100644 --- a/rest_framework/documentation.py +++ b/rest_framework/documentation.py @@ -13,7 +13,7 @@ def get_docs_view( authentication_classes=api_settings.DEFAULT_AUTHENTICATION_CLASSES, permission_classes=api_settings.DEFAULT_PERMISSION_CLASSES, renderer_classes=None): - + if renderer_classes is None: renderer_classes = [DocumentationRenderer, CoreJSONRenderer]