diff options
Diffstat (limited to 'tests/annotations')
| -rw-r--r-- | tests/annotations/models.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/annotations/models.py b/tests/annotations/models.py index c8fbe17792..500240df9b 100644 --- a/tests/annotations/models.py +++ b/tests/annotations/models.py @@ -54,11 +54,6 @@ class Company(models.Model): ticker_name = models.CharField(max_length=10, null=True, blank=True) description = models.CharField(max_length=200, null=True, blank=True) - def __str__(self): - return 'Company(name=%s, motto=%s, ticker_name=%s, description=%s)' % ( - self.name, self.motto, self.ticker_name, self.description, - ) - class Ticket(models.Model): active_at = models.DateTimeField() |
