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,19 +7,24 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0029_casestudy_negative_case_reasons'),
]
dependencies = [("map", "0029_casestudy_negative_case_reasons")]
operations = [
migrations.AddField(
model_name='casestudy',
name='wants_conversation_with_ojuso',
field=models.NullBooleanField(default=None, help_text='This would be a conversation about challenging or engaging related developers, companies and investors.', verbose_name='Would you like to have a conversation with the ojuso team?'),
model_name="casestudy",
name="wants_conversation_with_ojuso",
field=models.NullBooleanField(
default=None,
help_text="This would be a conversation about challenging or engaging related developers, companies and investors.",
verbose_name="Would you like to have a conversation with the ojuso team?",
),
),
migrations.AlterField(
model_name='casestudy',
name='describe_ecosystem',
field=models.TextField(help_text='In your own words, add more detail about the ecosystem.', verbose_name='Describe the ecosystem'),
model_name="casestudy",
name="describe_ecosystem",
field=models.TextField(
help_text="In your own words, add more detail about the ecosystem.",
verbose_name="Describe the ecosystem",
),
),
]