Remove unused imports

This commit is contained in:
Tom Christie 2015-07-30 15:59:27 +01:00
parent 4fd971e3e5
commit 1b3b01e042
3 changed files with 0 additions and 6 deletions

View File

@ -11,7 +11,6 @@ The wrapped request then offers a richer API, in particular :
from __future__ import unicode_literals
import sys
import warnings
from django.conf import settings
from django.http import QueryDict

View File

@ -12,8 +12,6 @@ response content is handled by parsers and renderers.
"""
from __future__ import unicode_literals
import warnings
from django.db import models
from django.db.models.fields import Field as DjangoModelField
from django.db.models.fields import FieldDoesNotExist

View File

@ -3,9 +3,6 @@ Provides an APIView class that is the base of all views in REST framework.
"""
from __future__ import unicode_literals
import inspect
import warnings
from django.core.exceptions import PermissionDenied
from django.db import models
from django.http import Http404