diff options
Diffstat (limited to 'tests/save_delete_hooks/models.py')
| -rw-r--r-- | tests/save_delete_hooks/models.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/save_delete_hooks/models.py b/tests/save_delete_hooks/models.py index 3d229daada..3573112cfa 100644 --- a/tests/save_delete_hooks/models.py +++ b/tests/save_delete_hooks/models.py @@ -5,10 +5,8 @@ To execute arbitrary code around ``save()`` and ``delete()``, just subclass the methods. """ 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=20) last_name = models.CharField(max_length=20) |
