Corrected many style guide violations that the newest version of flake8 catches

This commit is contained in:
Alex Gaynor 2014-03-30 12:11:05 -07:00
parent 92dbf34286
commit 778ce245dd
39 changed files with 55 additions and 54 deletions

View file

@ -436,7 +436,7 @@ class LookupTests(TestCase):
])
def test_none(self):
# none() returns a QuerySet that behaves like any other QuerySet object
# none() returns a QuerySet that behaves like any other QuerySet object
self.assertQuerysetEqual(Article.objects.none(), [])
self.assertQuerysetEqual(
Article.objects.none().filter(headline__startswith='Article'), [])