remove python_2_unicode_compatible from tests

This commit is contained in:
Ivan Elfimov 2020-01-31 16:49:56 +03:00 committed by Guillaume Baffoin
parent 4a5162612f
commit ec7db58b15
1 changed files with 1 additions and 2 deletions

View File

@ -1,9 +1,8 @@
import uuid
from django.db import models
from django.utils.encoding import force_text, python_2_unicode_compatible
from django.utils.encoding import force_text
@python_2_unicode_compatible
class TestModelBase(models.Model):
title = models.CharField(
max_length=200,