summaryrefslogtreecommitdiff
path: root/tests/annotations/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/annotations/models.py')
-rw-r--r--tests/annotations/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/annotations/models.py b/tests/annotations/models.py
index 1c6faaf884..a92ca0b43a 100644
--- a/tests/annotations/models.py
+++ b/tests/annotations/models.py
@@ -81,8 +81,8 @@ class Company(models.Model):
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)
+ return 'Company(name=%s, motto=%s, ticker_name=%s, description=%s)' % (
+ self.name, self.motto, self.ticker_name, self.description,
)