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,27 +7,29 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0048_auto_20180331_0933'),
]
dependencies = [("map", "0048_auto_20180331_0933")]
operations = [
migrations.RemoveField(model_name="casestudy", name="affects_indigenous"),
migrations.RemoveField(
model_name='casestudy',
name='affects_indigenous',
),
migrations.RemoveField(
model_name='casestudy',
name='affects_indigenous_detail',
model_name="casestudy", name="affects_indigenous_detail"
),
migrations.AddField(
model_name='casestudy',
name='people_affected_indigenous',
field=models.TextField(blank=True, help_text='What group or groups of indigenous people are affected by this project? Please separate by newline.', verbose_name='Indigenous people affected'),
model_name="casestudy",
name="people_affected_indigenous",
field=models.TextField(
blank=True,
help_text="What group or groups of indigenous people are affected by this project? Please separate by newline.",
verbose_name="Indigenous people affected",
),
),
migrations.AddField(
model_name='casestudy',
name='people_affected_other',
field=models.TextField(blank=True, help_text='What other group or groups of people are affected by this project? Please separate by newline.', verbose_name='Non-indigenous people affected'),
model_name="casestudy",
name="people_affected_other",
field=models.TextField(
blank=True,
help_text="What other group or groups of people are affected by this project? Please separate by newline.",
verbose_name="Non-indigenous people affected",
),
),
]