All: Apply Black coding rules

This commit is contained in:
2018-10-04 21:29:19 +02:00
parent 0581c667de
commit cb58b00b6e
204 changed files with 13173 additions and 6376 deletions

View File

@ -6,18 +6,13 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('election', '0002_election_archived'),
]
dependencies = [("election", "0002_election_archived")]
operations = [
migrations.AlterModelOptions(
name='role',
options={'ordering': ('order',)},
),
migrations.AlterModelOptions(name="role", options={"ordering": ("order",)}),
migrations.AddField(
model_name='role',
name='order',
model_name="role",
name="order",
field=models.PositiveIntegerField(editable=False, default=0, db_index=True),
preserve_default=False,
),