Run black over entire codebase

This commit is contained in:
2019-08-19 23:37:32 +02:00
parent fc7a9621a7
commit e3e3f6d5db
112 changed files with 8240 additions and 3214 deletions

View File

@ -7,34 +7,63 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0015_auto_20171030_1550'),
]
dependencies = [("map", "0015_auto_20171030_1550")]
operations = [
migrations.AddField(
model_name='casestudy',
name='definition_of_affected_territories',
field=models.CharField(blank=True, default=None, help_text='In your own words, define the territories that the project will affect.', max_length=512, null=True, verbose_name='Definition of affected territories'),
model_name="casestudy",
name="definition_of_affected_territories",
field=models.CharField(
blank=True,
default=None,
help_text="In your own words, define the territories that the project will affect.",
max_length=512,
null=True,
verbose_name="Definition of affected territories",
),
),
migrations.AddField(
model_name='casestudy',
name='official_project_documents',
field=models.FileField(blank=True, default=None, help_text='Attach any legal or official documents that relate to the project.', null=True, upload_to='', verbose_name='Official project documents'),
model_name="casestudy",
name="official_project_documents",
field=models.FileField(
blank=True,
default=None,
help_text="Attach any legal or official documents that relate to the project.",
null=True,
upload_to="",
verbose_name="Official project documents",
),
),
migrations.AddField(
model_name='casestudy',
name='other_documents',
field=models.FileField(blank=True, default=None, help_text='Attach any other documents that relate to the project.', null=True, upload_to='', verbose_name='Other documents'),
model_name="casestudy",
name="other_documents",
field=models.FileField(
blank=True,
default=None,
help_text="Attach any other documents that relate to the project.",
null=True,
upload_to="",
verbose_name="Other documents",
),
),
migrations.AddField(
model_name='casestudy',
name='shown_on_other_platforms',
field=models.NullBooleanField(default=None, help_text='Tick the box if you would like us to show this case study on other social media platforms', verbose_name='Show on other platforms?'),
model_name="casestudy",
name="shown_on_other_platforms",
field=models.NullBooleanField(
default=None,
help_text="Tick the box if you would like us to show this case study on other social media platforms",
verbose_name="Show on other platforms?",
),
),
migrations.AddField(
model_name='casestudy',
name='shown_on_other_platforms_detail',
field=models.CharField(blank=True, help_text='List the social media platforms that you would like us to specifically publish the case study on', max_length=128, null=True, verbose_name='Show on other platforms - Detail'),
model_name="casestudy",
name="shown_on_other_platforms_detail",
field=models.CharField(
blank=True,
help_text="List the social media platforms that you would like us to specifically publish the case study on",
max_length=128,
null=True,
verbose_name="Show on other platforms - Detail",
),
),
]