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,40 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0057_auto_20180423_0220'),
]
dependencies = [("map", "0057_auto_20180423_0220")]
operations = [
migrations.AlterField(
model_name='casestudy',
name='official_project_documents',
field=models.ManyToManyField(blank=True, help_text='Attach any legal or official documents that relate to the project.', related_name='official_project_document_for', to='files.File', verbose_name='Official project documents'),
model_name="casestudy",
name="official_project_documents",
field=models.ManyToManyField(
blank=True,
help_text="Attach any legal or official documents that relate to the project.",
related_name="official_project_document_for",
to="files.File",
verbose_name="Official project documents",
),
),
migrations.AlterField(
model_name='casestudy',
name='other_documents',
field=models.ManyToManyField(blank=True, help_text='Attach any other documents that relate to the project.', related_name='other_document_for', to='files.File', verbose_name='Other documents'),
model_name="casestudy",
name="other_documents",
field=models.ManyToManyField(
blank=True,
help_text="Attach any other documents that relate to the project.",
related_name="other_document_for",
to="files.File",
verbose_name="Other documents",
),
),
migrations.AlterField(
model_name='casestudy',
name='shapefiles',
field=models.ManyToManyField(blank=True, help_text='If you have territory that you would like to show in relation to this project - e.g. Bienes Comunales de Ixtepec etc. This is a set of 3 or more (often 5-6) files with file extensions like .cpg, .dbf, .prj, .qpj, .shp, .shx', related_name='shapefile_for', to='files.File', verbose_name='Shapefiles'),
model_name="casestudy",
name="shapefiles",
field=models.ManyToManyField(
blank=True,
help_text="If you have territory that you would like to show in relation to this project - e.g. Bienes Comunales de Ixtepec etc. This is a set of 3 or more (often 5-6) files with file extensions like .cpg, .dbf, .prj, .qpj, .shp, .shx",
related_name="shapefile_for",
to="files.File",
verbose_name="Shapefiles",
),
),
]