1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fixed all E251 violations

This commit is contained in:
Alex Gaynor
2013-11-03 10:17:58 -08:00
parent c347f78cc1
commit f67e18f39e
14 changed files with 37 additions and 37 deletions

View File

@@ -58,8 +58,8 @@ class SelectRelatedRegressTests(TestCase):
usp = Person.objects.create(user=us)
uo = TUser.objects.create(name="org")
uop = Person.objects.create(user=uo)
s = Student.objects.create(person = usp)
o = Organizer.objects.create(person = uop)
s = Student.objects.create(person=usp)
o = Organizer.objects.create(person=uop)
c = Class.objects.create(org=o)
Enrollment.objects.create(std=s, cls=c)