From 6d790c7beaf4ead9ee5e2c62fbac96d99a5c16c1 Mon Sep 17 00:00:00 2001 From: Dharanidhar Reddy Date: Sat, 15 Jun 2019 18:56:02 +0530 Subject: [PATCH] Fixed Lint errors --- rest_framework/decorators.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest_framework/decorators.py b/rest_framework/decorators.py index c5007212f..45c1fdfb4 100644 --- a/rest_framework/decorators.py +++ b/rest_framework/decorators.py @@ -8,12 +8,12 @@ used to annotate methods on viewsets that should be included by routers. """ import types from functools import wraps -from django.db.models import QuerySet +from django.db.models import QuerySet from django.forms.utils import pretty_name -from rest_framework.views import APIView from rest_framework.response import Response +from rest_framework.views import APIView def api_view(http_method_names=None):