From 9d740eb8b15de31f1c5520659df683d90342bb44 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 26 Oct 2013 12:15:03 -0700 Subject: Fix all violators of E231 --- tests/update_only_fields/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/update_only_fields') diff --git a/tests/update_only_fields/tests.py b/tests/update_only_fields/tests.py index 69eb0bf9c1..cfca761e4c 100644 --- a/tests/update_only_fields/tests.py +++ b/tests/update_only_fields/tests.py @@ -128,7 +128,7 @@ class UpdateOnlyFieldsTests(TestCase): a1 = Account.objects.create(num=1) a2 = Account.objects.create(num=2) - e1.accounts = [a1,a2] + e1.accounts = [a1, a2] with self.assertRaises(ValueError): e1.save(update_fields=['accounts']) -- cgit v1.3