From b67ab75e82ec59dd4eeca119eeaf570d7c88556c Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 11 Oct 2013 07:25:14 -0400 Subject: Fixed assorted flake8 errors. --- tests/swappable_models/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/swappable_models') diff --git a/tests/swappable_models/models.py b/tests/swappable_models/models.py index 92692d4396..c5b4425489 100644 --- a/tests/swappable_models/models.py +++ b/tests/swappable_models/models.py @@ -2,7 +2,7 @@ from django.db import models class Article(models.Model): - title = models.CharField(max_length=100) + title = models.CharField(max_length=100) publication_date = models.DateField() class Meta: @@ -10,6 +10,6 @@ class Article(models.Model): class AlternateArticle(models.Model): - title = models.CharField(max_length=100) + title = models.CharField(max_length=100) publication_date = models.DateField() byline = models.CharField(max_length=100) -- cgit v1.3