From 01e8ac47b37ccf1b4d9b9710ae2d9b6b486c3c7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Wed, 27 Nov 2013 19:43:37 +0200 Subject: [PATCH] PEP-8 cleanup Refs #21169 --- tests/custom_managers/models.py | 1 + tests/custom_managers/tests.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/custom_managers/models.py b/tests/custom_managers/models.py index 726ece7dab..238124a265 100644 --- a/tests/custom_managers/models.py +++ b/tests/custom_managers/models.py @@ -117,6 +117,7 @@ class FunPerson(models.Model): def __str__(self): return "%s %s" % (self.first_name, self.last_name) + @python_2_unicode_compatible class Book(models.Model): title = models.CharField(max_length=50) diff --git a/tests/custom_managers/tests.py b/tests/custom_managers/tests.py index 440274e0e0..437d75deea 100644 --- a/tests/custom_managers/tests.py +++ b/tests/custom_managers/tests.py @@ -448,7 +448,6 @@ class CustomManagerTests(TestCase): ) self.b1.authors.add(droopy) - # Check that the fun manager ONLY clears fun people. self.b1.authors(manager='fun_people').clear() self.assertQuerysetEqual(