summaryrefslogtreecommitdiff
path: root/tests/admin_custom_urls/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/admin_custom_urls/models.py')
-rw-r--r--tests/admin_custom_urls/models.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/admin_custom_urls/models.py b/tests/admin_custom_urls/models.py
index 5365ee34bd..840d9b9f38 100644
--- a/tests/admin_custom_urls/models.py
+++ b/tests/admin_custom_urls/models.py
@@ -4,10 +4,8 @@ from django.contrib import admin
from django.db import models
from django.http import HttpResponseRedirect
from django.urls import reverse
-from django.utils.encoding import python_2_unicode_compatible
-@python_2_unicode_compatible
class Action(models.Model):
name = models.CharField(max_length=50, primary_key=True)
description = models.CharField(max_length=70)