Fixed Lint errors

This commit is contained in:
Dharanidhar Reddy 2019-06-15 18:56:02 +05:30
parent d93e3b9419
commit 6d790c7bea

View File

@ -8,12 +8,12 @@ used to annotate methods on viewsets that should be included by routers.
""" """
import types import types
from functools import wraps from functools import wraps
from django.db.models import QuerySet
from django.db.models import QuerySet
from django.forms.utils import pretty_name from django.forms.utils import pretty_name
from rest_framework.views import APIView
from rest_framework.response import Response from rest_framework.response import Response
from rest_framework.views import APIView
def api_view(http_method_names=None): def api_view(http_method_names=None):