Skip to content

Commit a05c088

Browse files
author
Emmanouil Konstantinidis
committedDec 16, 2015
Support python 2 and 3
1 parent aaf5f66 commit a05c088

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed
 

‎tests/serializers.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import absolute_import, division, print_function
2+
13
from rest_framework import serializers
24
from tests.models import User, Organisation, Membership
35

‎tests/urls.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import absolute_import, division, print_function
2+
13
from django.conf.urls import include, url
24
from django.contrib import admin
35
from tests import views

‎tests/views.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import absolute_import, division, print_function
2+
13
from django.shortcuts import get_object_or_404
24
from django.views.generic.base import TemplateView
35
from rest_framework import parsers, renderers, generics, status

0 commit comments

Comments
 (0)
Please sign in to comment.