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,44 +7,88 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0032_auto_20171103_1745'),
]
dependencies = [("map", "0032_auto_20171103_1745")]
operations = [
migrations.AddField(
model_name='casestudy',
name='isolated_or_widespread_description',
field=models.TextField(blank=True, default=None, help_text='Is this an isolated project or are there similar projects in the same geographic area? If there are more, can you describe them? Are there any significant cumulative synergistic effects?', null=True, verbose_name='Describe if the project is isolated or commonplace.'),
model_name="casestudy",
name="isolated_or_widespread_description",
field=models.TextField(
blank=True,
default=None,
help_text="Is this an isolated project or are there similar projects in the same geographic area? If there are more, can you describe them? Are there any significant cumulative synergistic effects?",
null=True,
verbose_name="Describe if the project is isolated or commonplace.",
),
),
migrations.AddField(
model_name='casestudy',
name='negative_case_reasons_other',
field=models.CharField(blank=True, default=None, help_text='Please include other reasons, noting that we aim to focus on projects with substantive negative impacts on vulnerable groups.', max_length=512, null=True, verbose_name='Other reason for negative case'),
model_name="casestudy",
name="negative_case_reasons_other",
field=models.CharField(
blank=True,
default=None,
help_text="Please include other reasons, noting that we aim to focus on projects with substantive negative impacts on vulnerable groups.",
max_length=512,
null=True,
verbose_name="Other reason for negative case",
),
),
migrations.AddField(
model_name='casestudy',
name='negative_socioenvironmental_impacts',
field=models.TextField(blank=True, default=None, help_text='Provide a detailed description of the negative socio-environmental impacts (please provide all relevant details, such as type of ecosystem and presence of any existing reserve in the area, , specific communities affected by the project, total geographic footprint of the project, and tenure system affected in the case of land grabs, kind of permits that were irregularly issued if this is the case.', null=True, verbose_name='Describe the negative socio-environmental impacts'),
model_name="casestudy",
name="negative_socioenvironmental_impacts",
field=models.TextField(
blank=True,
default=None,
help_text="Provide a detailed description of the negative socio-environmental impacts (please provide all relevant details, such as type of ecosystem and presence of any existing reserve in the area, , specific communities affected by the project, total geographic footprint of the project, and tenure system affected in the case of land grabs, kind of permits that were irregularly issued if this is the case.",
null=True,
verbose_name="Describe the negative socio-environmental impacts",
),
),
migrations.AddField(
model_name='casestudy',
name='participation_mechanisms',
field=models.CharField(blank=True, default=None, help_text='e.g. direct action, local referendums, legal cases, letters or petitions etc', max_length=512, null=True, verbose_name='What mechanisms of participation have been used?'),
model_name="casestudy",
name="participation_mechanisms",
field=models.CharField(
blank=True,
default=None,
help_text="e.g. direct action, local referendums, legal cases, letters or petitions etc",
max_length=512,
null=True,
verbose_name="What mechanisms of participation have been used?",
),
),
migrations.AddField(
model_name='casestudy',
name='potential_partnerships',
field=models.CharField(blank=True, default=None, help_text='Are you looking for partnerships or do you have any clearly identified need? If so, please describe it here.', max_length=512, null=True, verbose_name='Describe potential partnerships'),
model_name="casestudy",
name="potential_partnerships",
field=models.CharField(
blank=True,
default=None,
help_text="Are you looking for partnerships or do you have any clearly identified need? If so, please describe it here.",
max_length=512,
null=True,
verbose_name="Describe potential partnerships",
),
),
migrations.AddField(
model_name='casestudy',
name='when_did_organising_start',
field=models.CharField(blank=True, default=None, help_text='Before the project started? During project implementation? After project implementation? Describe in your own words.', max_length=512, null=True, verbose_name='When did local organising efforts begin?'),
model_name="casestudy",
name="when_did_organising_start",
field=models.CharField(
blank=True,
default=None,
help_text="Before the project started? During project implementation? After project implementation? Describe in your own words.",
max_length=512,
null=True,
verbose_name="When did local organising efforts begin?",
),
),
migrations.AddField(
model_name='casestudy',
name='who_has_been_involved',
field=models.CharField(blank=True, default=None, max_length=512, null=True, verbose_name='Which communities, groups and organisations have been involved?'),
model_name="casestudy",
name="who_has_been_involved",
field=models.CharField(
blank=True,
default=None,
max_length=512,
null=True,
verbose_name="Which communities, groups and organisations have been involved?",
),
),
]