diff options
| author | Tim Graham <timograham@gmail.com> | 2016-04-07 22:04:45 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-04-08 10:12:33 -0400 |
| commit | 92053acbb9160862c3e743a99ed8ccff8d4f8fd6 (patch) | |
| tree | 50e7fd28a650f0e2352cf94f92e5a66d28a81988 /tests/annotations | |
| parent | df8d8d4292684d6ffa7474f1e201aed486f02b53 (diff) | |
Fixed E128 flake8 warnings in tests/.
Diffstat (limited to 'tests/annotations')
| -rw-r--r-- | tests/annotations/models.py | 4 |
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, ) |
