Skip to content

Commit bc63e9f

Browse files
committed
Use six from Django instead
1 parent 6c5413c commit bc63e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest_framework_json_api/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
from django.db.models import Model
44
from django.db.models.query import QuerySet
55
from django.db.models.manager import Manager
6+
from django.utils import six
67
from rest_framework import generics
78
from rest_framework.response import Response
89
from rest_framework.exceptions import NotFound, MethodNotAllowed
910
from rest_framework.reverse import reverse
10-
import six
1111

1212
from rest_framework_json_api.exceptions import Conflict
1313
from rest_framework_json_api.serializers import ResourceIdentifierObjectSerializer

0 commit comments

Comments
 (0)