Run black over entire codebase
This commit is contained in:
@ -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",
|
||||
),
|
||||
)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user