aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/tests/views.py
diff options
context:
space:
mode:
authorOscar Vilaplana2013-05-19 15:06:24 +0200
committerOscar Vilaplana2013-05-19 15:06:24 +0200
commitedbf65c06e403645d91ce9dec24495a58323a3a0 (patch)
tree000da0f76bb2a82b770f8538102575093fe61202 /rest_framework/tests/views.py
parent696c053f4fbbbb302d9b214d8daf511879256a7f (diff)
downloaddjango-rest-framework-edbf65c06e403645d91ce9dec24495a58323a3a0.tar.bz2
Removed unused imports
Diffstat (limited to 'rest_framework/tests/views.py')
-rw-r--r--rest_framework/tests/views.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/rest_framework/tests/views.py b/rest_framework/tests/views.py
index b70ef4ae..c0f42a06 100644
--- a/rest_framework/tests/views.py
+++ b/rest_framework/tests/views.py
@@ -1,14 +1,16 @@
from __future__ import unicode_literals
+
+import copy
+
from django.test import TestCase
from django.test.client import RequestFactory
+
from rest_framework import status
from rest_framework.decorators import api_view
from rest_framework.response import Response
from rest_framework.settings import api_settings
from rest_framework.views import APIView
-from rest_framework import exceptions
-from rest_framework import serializers
-import copy
+
factory = RequestFactory()