Run isort/black on migrations

This commit is contained in:
Stefan Wehrmeyer 2022-11-23 12:31:25 +01:00
parent 2e8aaf699f
commit df26c50e12
10 changed files with 526 additions and 152 deletions

View file

@ -6,18 +6,29 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('froide_govplan', '0006_sections_cms_plugin'),
("froide_govplan", "0006_sections_cms_plugin"),
]
operations = [
migrations.AlterField(
model_name='governmentplanscmsplugin',
name='template',
field=models.CharField(blank=True, choices=[('froide_govplan/plugins/default.html', 'Normal'), ('froide_govplan/plugins/progress.html', 'Progress'), ('froide_govplan/plugins/card_cols.html', 'Card columns'), ('froide_govplan/plugins/search.html', 'Search')], help_text='template used to display the plugin', max_length=250, verbose_name='template'),
model_name="governmentplanscmsplugin",
name="template",
field=models.CharField(
blank=True,
choices=[
("froide_govplan/plugins/default.html", "Normal"),
("froide_govplan/plugins/progress.html", "Progress"),
("froide_govplan/plugins/card_cols.html", "Card columns"),
("froide_govplan/plugins/search.html", "Search"),
],
help_text="template used to display the plugin",
max_length=250,
verbose_name="template",
),
),
migrations.AlterField(
model_name='governmentplanupdate',
name='url',
field=models.URLField(blank=True, max_length=1024, verbose_name='URL'),
model_name="governmentplanupdate",
name="url",
field=models.URLField(blank=True, max_length=1024, verbose_name="URL"),
),
]