From 92053acbb9160862c3e743a99ed8ccff8d4f8fd6 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 7 Apr 2016 22:04:45 -0400 Subject: Fixed E128 flake8 warnings in tests/. --- tests/annotations/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/annotations') 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, ) -- cgit v1.3