mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +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
|
@ -13,9 +13,6 @@ class R(models.Model):
|
|||
is_default = models.BooleanField(default=False)
|
||||
p = models.ForeignKey(P, models.CASCADE, null=True)
|
||||
|
||||
def __str__(self):
|
||||
return "%s" % self.pk
|
||||
|
||||
|
||||
def get_default_r():
|
||||
return R.objects.get_or_create(is_default=True)[0].pk
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue