Run black over entire codebase
This commit is contained in:
@ -7,14 +7,39 @@ from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('map', '0031_auto_20171103_1610'),
|
||||
]
|
||||
dependencies = [("map", "0031_auto_20171103_1610")]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='casestudy',
|
||||
name='type_of_ecosystem',
|
||||
field=models.CharField(blank=True, choices=[('Water Based', (('MARINE', 'Marine (e.g. Ocean, Sea)'), ('FRESH', 'Freshwater (e.g. Freshwater, Lake)'))), ('Land Based', (('FOREST', 'Forest/Jungle'), ('AGRI', 'Agricultural Land'), ('GRASS', 'Grassland'), ('DESERT', 'Desert (Tundra, Ice or Sand)'), ('WETLND', 'Wetland (Marsh, Mangrove, Peat Soil)'), ('URBAN', 'Urban')))], default=None, help_text='Select the most relevant type of ecosystem.', max_length=6, null=True, verbose_name='Type of ecosystem'),
|
||||
),
|
||||
model_name="casestudy",
|
||||
name="type_of_ecosystem",
|
||||
field=models.CharField(
|
||||
blank=True,
|
||||
choices=[
|
||||
(
|
||||
"Water Based",
|
||||
(
|
||||
("MARINE", "Marine (e.g. Ocean, Sea)"),
|
||||
("FRESH", "Freshwater (e.g. Freshwater, Lake)"),
|
||||
),
|
||||
),
|
||||
(
|
||||
"Land Based",
|
||||
(
|
||||
("FOREST", "Forest/Jungle"),
|
||||
("AGRI", "Agricultural Land"),
|
||||
("GRASS", "Grassland"),
|
||||
("DESERT", "Desert (Tundra, Ice or Sand)"),
|
||||
("WETLND", "Wetland (Marsh, Mangrove, Peat Soil)"),
|
||||
("URBAN", "Urban"),
|
||||
),
|
||||
),
|
||||
],
|
||||
default=None,
|
||||
help_text="Select the most relevant type of ecosystem.",
|
||||
max_length=6,
|
||||
null=True,
|
||||
verbose_name="Type of ecosystem",
|
||||
),
|
||||
)
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user