PEP8 Cleanup (495 warnings).
This commit is contained in:
@@ -112,8 +112,9 @@ class Migration(migrations.Migration):
|
||||
),
|
||||
(
|
||||
'initial', models.BooleanField(
|
||||
default=False,
|
||||
help_text='Select if this will be the state with which you want the workflow to start in. Only one state can be the initial state.',
|
||||
default=False, help_text='Select if this will be the '
|
||||
'state with which you want the workflow to start in. '
|
||||
'Only one state can be the initial state.',
|
||||
verbose_name='Initial'
|
||||
)
|
||||
),
|
||||
|
||||
@@ -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,
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user