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,24 +7,43 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0036_auto_20180327_0334'),
]
dependencies = [("map", "0036_auto_20180327_0334")]
operations = [
migrations.AlterField(
model_name='casestudy',
name='direct_comms',
field=models.TextField(blank=True, default=None, help_text='Add any reports of direct communication between community members and representatives of developers/companies/investors.', max_length=500, null=True, verbose_name='Reports of direct communications'),
model_name="casestudy",
name="direct_comms",
field=models.TextField(
blank=True,
default=None,
help_text="Add any reports of direct communication between community members and representatives of developers/companies/investors.",
max_length=500,
null=True,
verbose_name="Reports of direct communications",
),
),
migrations.AlterField(
model_name='casestudy',
name='projected_production_of_commodities',
field=models.CharField(blank=True, default=None, help_text="Describe the projected production of commodities per annum and overall (e.g. '40 million tonnes of iron ore per year, 200 million tonnes over 5 year life of mine'", max_length=256, null=True, verbose_name='Projected production of key commodities'),
model_name="casestudy",
name="projected_production_of_commodities",
field=models.CharField(
blank=True,
default=None,
help_text="Describe the projected production of commodities per annum and overall (e.g. '40 million tonnes of iron ore per year, 200 million tonnes over 5 year life of mine'",
max_length=256,
null=True,
verbose_name="Projected production of key commodities",
),
),
migrations.AlterField(
model_name='casestudy',
name='size_of_concessions',
field=models.CharField(blank=True, default=None, help_text="Describe the size of concession(s) granted to company/companies (e.g. 'one concession encompassing 2,300 hectares')", max_length=200, null=True, verbose_name='Size of concessions'),
model_name="casestudy",
name="size_of_concessions",
field=models.CharField(
blank=True,
default=None,
help_text="Describe the size of concession(s) granted to company/companies (e.g. 'one concession encompassing 2,300 hectares')",
max_length=200,
null=True,
verbose_name="Size of concessions",
),
),
]