Import from correct place

This commit is contained in:
Yuri Prezument 2012-11-27 19:42:37 +02:00
parent e8a41322fb
commit 80be571b2e

View File

@ -19,7 +19,8 @@ Using the `APIView` class is pretty much the same as using a regular `View` clas
For example:
from rest_framework.views import APIView, Response
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import authentication, permissions
class ListUsers(APIView):