From d93e3b9419e19401a94e9fc41c6970d301898310 Mon Sep 17 00:00:00 2001 From: Dharanidhar Reddy Date: Sat, 15 Jun 2019 18:35:34 +0530 Subject: [PATCH] Fixed Lint errors --- rest_framework/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/decorators.py b/rest_framework/decorators.py index 579a811fa..c5007212f 100644 --- a/rest_framework/decorators.py +++ b/rest_framework/decorators.py @@ -130,7 +130,7 @@ def paginate(view_method): @wraps(view_method) def inner(view, *args, **kwargs): assert isinstance(view, APIView), ( - "paginate must be applied on an APIView, but applied on %s." % APIView + "paginate must be applied on an APIView, but applied on %s." % APIView ) queryset = view_method(view, *args, **kwargs)