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,14 +7,19 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0018_auto_20171102_2205'),
]
dependencies = [("map", "0018_auto_20171102_2205")]
operations = [
migrations.AddField(
model_name='casestudy',
name='coordinate_reference_system',
field=models.CharField(blank=True, default=None, help_text='Enter the coordinate reference system of the shapefiles.', max_length=12, null=True, verbose_name='Coordinate reference system'),
),
model_name="casestudy",
name="coordinate_reference_system",
field=models.CharField(
blank=True,
default=None,
help_text="Enter the coordinate reference system of the shapefiles.",
max_length=12,
null=True,
verbose_name="Coordinate reference system",
),
)
]