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,20 +8,71 @@ import multiselectfield.db.fields
class Migration(migrations.Migration):
dependencies = [
('map', '0047_auto_20180331_0607'),
]
dependencies = [("map", "0047_auto_20180331_0607")]
operations = [
migrations.AddField(
model_name='casestudy',
name='financial_institutions_other',
field=models.TextField(blank=True, help_text='List any other financial institutions not listed above. Put each on a new line.', verbose_name='Financial institutions other'),
model_name="casestudy",
name="financial_institutions_other",
field=models.TextField(
blank=True,
help_text="List any other financial institutions not listed above. Put each on a new line.",
verbose_name="Financial institutions other",
),
),
migrations.AlterField(
model_name='casestudy',
name='financial_institutions',
field=multiselectfield.db.fields.MultiSelectField(blank=True, choices=[('AfDB', 'African Development Bank (AfDB)'), ('BADEA', 'Arab Bank for Economic Development in Africa (BADEA)'), ('ADB', 'Asian Development Bank (ADB)'), ('AIIB', 'Asian Infrastructure Investment Bank (AIIB)'), ('BSTDB', 'Black Sea Trade and Development Bank (BSTDB)'), ('CAF', 'Corporacion Andina de Fomento / Development Bank of Latin America (CAF)'), ('CDB', 'Caribbean Development Bank (CDB)'), ('CABEI', 'Central American Bank for Economic Integration (CABEI)'), ('EADB', 'East African Development Bank (EADB)'), ('ETDB', 'Economic Cooperation Organization Trade and Development Bank (ETDB)'), ('EDB', 'Eurasian Development Bank (EDB)'), ('EBRD', 'European Bank for Reconstruction and Development (EBRD)'), ('EC', 'European Commission (EC)'), ('EIB', 'European Investment Bank (EIB)'), ('IADB', 'Inter-American Development Bank Group (IDB, IADB)'), ('IFFIm', 'International Finance Facility for Immunisation (IFFIm)'), ('IFAD', 'International Fund for Agricultural Development (IFAD)'), ('IIB', 'International Investment Bank (IIB)'), ('IsDB', 'Islamic Development Bank (IsDB)'), ('FMO', 'Nederlandse Financieringsmaatschappij voor Ontwikkelingslanden NV (FMO)'), ('NDB', 'New Development Bank (NDB) (formerly BRICS Development Bank)'), ('NDF', 'The Nordic Development Fund'), ('NIB', 'Nordic Investment Bank (NIB)'), ('OFID', 'OPEC Fund for International Development (OFID)'), ('BOAD', 'West African Development Bank (BOAD)'), ('WB', 'World Bank')], default='', help_text='Select any financial institutions that have or are considering extending loans or guarantees to the project.', max_length=119, verbose_name='Financial institutions'),
model_name="casestudy",
name="financial_institutions",
field=multiselectfield.db.fields.MultiSelectField(
blank=True,
choices=[
("AfDB", "African Development Bank (AfDB)"),
("BADEA", "Arab Bank for Economic Development in Africa (BADEA)"),
("ADB", "Asian Development Bank (ADB)"),
("AIIB", "Asian Infrastructure Investment Bank (AIIB)"),
("BSTDB", "Black Sea Trade and Development Bank (BSTDB)"),
(
"CAF",
"Corporacion Andina de Fomento / Development Bank of Latin America (CAF)",
),
("CDB", "Caribbean Development Bank (CDB)"),
("CABEI", "Central American Bank for Economic Integration (CABEI)"),
("EADB", "East African Development Bank (EADB)"),
(
"ETDB",
"Economic Cooperation Organization Trade and Development Bank (ETDB)",
),
("EDB", "Eurasian Development Bank (EDB)"),
("EBRD", "European Bank for Reconstruction and Development (EBRD)"),
("EC", "European Commission (EC)"),
("EIB", "European Investment Bank (EIB)"),
("IADB", "Inter-American Development Bank Group (IDB, IADB)"),
(
"IFFIm",
"International Finance Facility for Immunisation (IFFIm)",
),
("IFAD", "International Fund for Agricultural Development (IFAD)"),
("IIB", "International Investment Bank (IIB)"),
("IsDB", "Islamic Development Bank (IsDB)"),
(
"FMO",
"Nederlandse Financieringsmaatschappij voor Ontwikkelingslanden NV (FMO)",
),
(
"NDB",
"New Development Bank (NDB) (formerly BRICS Development Bank)",
),
("NDF", "The Nordic Development Fund"),
("NIB", "Nordic Investment Bank (NIB)"),
("OFID", "OPEC Fund for International Development (OFID)"),
("BOAD", "West African Development Bank (BOAD)"),
("WB", "World Bank"),
],
default="",
help_text="Select any financial institutions that have or are considering extending loans or guarantees to the project.",
max_length=119,
verbose_name="Financial institutions",
),
preserve_default=False,
),
]