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

@ -8,14 +8,43 @@ import multiselectfield.db.fields
class Migration(migrations.Migration):
dependencies = [
('map', '0040_auto_20180328_0309'),
]
dependencies = [("map", "0040_auto_20180328_0309")]
operations = [
migrations.AlterField(
model_name='casestudy',
name='negative_case_reasons',
field=multiselectfield.db.fields.MultiSelectField(blank=True, choices=[('VOLR', 'Violation of land rights'), ('VOHR', 'Violation of fundamental human rights, indigenous rights and/or other collective rights'), ('EIMP', 'Environmental impacts (severe impacts on ecosystems / violation of laws, plans or programs of environmental conservation or territorial governance systems etc.'), ('NCUL', 'Negative cultural impacts (erosion/destruction of bio-cultural heritage, impacts on sacred land etc)'), ('AGGR', 'Aggression/threats to community members opposed to the project, collaboration with organized crime etc'), ('ALAB', 'Abusive labour practices'), ('CRUP', 'Corruption and/or irregular permitting or contracting, conflicts of interest etc'), ('OTHR', 'Other reasons')], default=None, max_length=39, null=True, verbose_name='Reasons this is a negative case study'),
),
model_name="casestudy",
name="negative_case_reasons",
field=multiselectfield.db.fields.MultiSelectField(
blank=True,
choices=[
("VOLR", "Violation of land rights"),
(
"VOHR",
"Violation of fundamental human rights, indigenous rights and/or other collective rights",
),
(
"EIMP",
"Environmental impacts (severe impacts on ecosystems / violation of laws, plans or programs of environmental conservation or territorial governance systems etc.",
),
(
"NCUL",
"Negative cultural impacts (erosion/destruction of bio-cultural heritage, impacts on sacred land etc)",
),
(
"AGGR",
"Aggression/threats to community members opposed to the project, collaboration with organized crime etc",
),
("ALAB", "Abusive labour practices"),
(
"CRUP",
"Corruption and/or irregular permitting or contracting, conflicts of interest etc",
),
("OTHR", "Other reasons"),
],
default=None,
max_length=39,
null=True,
verbose_name="Reasons this is a negative case study",
),
)
]