diff options
| author | Alasdair Nicol <alasdair@thenicols.net> | 2013-10-20 00:33:10 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-21 08:31:30 -0400 |
| commit | b289fcf1bfeaa717ed465b2529a275b61dc02d92 (patch) | |
| tree | 1b43958bb74005ccb93f3cd12ce4bc13d9747ab2 /tests/model_fields | |
| parent | a3690168cbde5e7bee16443569ad3dedd2466af7 (diff) | |
Fixed #21288 -- Fixed E126 pep8 warnings
Diffstat (limited to 'tests/model_fields')
| -rw-r--r-- | tests/model_fields/models.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/model_fields/models.py b/tests/model_fields/models.py index 62d23a587a..3651d99ad8 100644 --- a/tests/model_fields/models.py +++ b/tests/model_fields/models.py @@ -31,13 +31,13 @@ class Bar(models.Model): class Whiz(models.Model): CHOICES = ( ('Group 1', ( - (1, 'First'), - (2, 'Second'), + (1, 'First'), + (2, 'Second'), ) ), ('Group 2', ( - (3, 'Third'), - (4, 'Fourth'), + (3, 'Third'), + (4, 'Fourth'), ) ), (0, 'Other'), @@ -218,9 +218,9 @@ if Image: height_field='mugshot_height', width_field='mugshot_width') headshot_height = models.PositiveSmallIntegerField( - blank=True, null=True) + blank=True, null=True) headshot_width = models.PositiveSmallIntegerField( - blank=True, null=True) + blank=True, null=True) headshot = TestImageField(blank=True, null=True, storage=temp_storage, upload_to='tests', height_field='headshot_height', |
