summaryrefslogtreecommitdiff
path: root/tests/get_or_create/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/get_or_create/models.py')
-rw-r--r--tests/get_or_create/models.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/get_or_create/models.py b/tests/get_or_create/models.py
index 5d6e69de3a..cfde80ce85 100644
--- a/tests/get_or_create/models.py
+++ b/tests/get_or_create/models.py
@@ -1,8 +1,6 @@
from django.db import models
-from django.utils.encoding import python_2_unicode_compatible
-@python_2_unicode_compatible
class Person(models.Model):
first_name = models.CharField(max_length=100)
last_name = models.CharField(max_length=100)