Removed unused imports

This commit is contained in:
Oscar Vilaplana 2013-05-19 15:06:24 +02:00
parent 696c053f4f
commit edbf65c06e

View File

@ -1,14 +1,16 @@
from __future__ import unicode_literals from __future__ import unicode_literals
import copy
from django.test import TestCase from django.test import TestCase
from django.test.client import RequestFactory from django.test.client import RequestFactory
from rest_framework import status from rest_framework import status
from rest_framework.decorators import api_view from rest_framework.decorators import api_view
from rest_framework.response import Response from rest_framework.response import Response
from rest_framework.settings import api_settings from rest_framework.settings import api_settings
from rest_framework.views import APIView from rest_framework.views import APIView
from rest_framework import exceptions
from rest_framework import serializers
import copy
factory = RequestFactory() factory = RequestFactory()