summaryrefslogtreecommitdiff
path: root/tests/modeladmin/models.py
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/modeladmin/models.py
parentdf8d8d4292684d6ffa7474f1e201aed486f02b53 (diff)
Fixed E128 flake8 warnings in tests/.
Diffstat (limited to 'tests/modeladmin/models.py')
-rw-r--r--tests/modeladmin/models.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/modeladmin/models.py b/tests/modeladmin/models.py
index 54291354bc..2c2a910892 100644
--- a/tests/modeladmin/models.py
+++ b/tests/modeladmin/models.py
@@ -19,8 +19,7 @@ class Band(models.Model):
class Concert(models.Model):
main_band = models.ForeignKey(Band, models.CASCADE, related_name='main_concerts')
- opening_band = models.ForeignKey(Band, models.CASCADE, related_name='opening_concerts',
- blank=True)
+ opening_band = models.ForeignKey(Band, models.CASCADE, related_name='opening_concerts', blank=True)
day = models.CharField(max_length=3, choices=((1, 'Fri'), (2, 'Sat')))
transport = models.CharField(max_length=100, choices=(
(1, 'Plane'),