summaryrefslogtreecommitdiff
path: root/tests/annotations
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-04-07 22:04:45 -0400
committerTim Graham <timograham@gmail.com>2016-04-08 10:12:33 -0400
commit92053acbb9160862c3e743a99ed8ccff8d4f8fd6 (patch)
tree50e7fd28a650f0e2352cf94f92e5a66d28a81988 /tests/annotations
parentdf8d8d4292684d6ffa7474f1e201aed486f02b53 (diff)
Fixed E128 flake8 warnings in tests/.
Diffstat (limited to 'tests/annotations')
-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,
)