diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-11 07:25:14 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-11 07:25:14 -0400 |
| commit | b67ab75e82ec59dd4eeca119eeaf570d7c88556c (patch) | |
| tree | 45bb072d08b4d7de7e6b76bf01fcd9bddcb43acd /tests/swappable_models | |
| parent | 695bc0d191c126a948a7cf3acc3e37d9377ebd20 (diff) | |
Fixed assorted flake8 errors.
Diffstat (limited to 'tests/swappable_models')
| -rw-r--r-- | tests/swappable_models/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |
