mirror of
https://github.com/django/django.git
synced 2025-12-04 00:55:36 +00:00
Removed unused __str__() methods in tests models.
Follow up to 6461583b6c.
This commit is contained in:
parent
bb13711451
commit
555e3a848e
35 changed files with 2 additions and 400 deletions
|
|
@ -7,9 +7,6 @@ class Person(models.Model):
|
|||
birthday = models.DateField()
|
||||
defaults = models.TextField()
|
||||
|
||||
def __str__(self):
|
||||
return '%s %s' % (self.first_name, self.last_name)
|
||||
|
||||
|
||||
class DefaultPerson(models.Model):
|
||||
first_name = models.CharField(max_length=100, default="Anonymous")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue