Remove __unicode__ magic methods no longer needed

This commit is contained in:
Griatch 2019-01-30 23:50:43 +01:00
parent c3df77b678
commit 7a535b35fa
8 changed files with 10 additions and 29 deletions

View file

@ -342,7 +342,7 @@ class TypedObject(SharedMemoryModel):
def __str__(self):
return smart_str("%s" % self.db_key)
def __unicode__(self):
def __repr__(self):
return "%s" % self.db_key
#@property