PEP8 Cleanup (495 warnings).

This commit is contained in:
Roberto Rosario
2015-09-16 09:33:16 -04:00
parent 22ae0eca70
commit 60e64b92fd
31 changed files with 771 additions and 64 deletions

View File

@@ -14,7 +14,12 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='workflowstate',
name='completion',
field=models.IntegerField(default=0, help_text='Enter the percent of completion that this state represents in relation to the workflow. Use numbers without the percent sign.', verbose_name='Completion', blank=True),
field=models.IntegerField(
default=0, help_text='Enter the percent of completion that '
'this state represents in relation to the workflow. Use '
'numbers without the percent sign.', verbose_name='Completion',
blank=True
),
preserve_default=True,
),
]