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,25 +8,36 @@ import phonenumber_field.modelfields
class Migration(migrations.Migration):
dependencies = [
('map', '0044_auto_20180331'),
]
dependencies = [("map", "0044_auto_20180331")]
operations = [
migrations.AlterField(
model_name='casestudy',
name='contact_phone',
field=phonenumber_field.modelfields.PhoneNumberField(blank=True, help_text='Please include the international prefix, beginning with "+".', max_length=128, verbose_name='Phone number'),
model_name="casestudy",
name="contact_phone",
field=phonenumber_field.modelfields.PhoneNumberField(
blank=True,
help_text='Please include the international prefix, beginning with "+".',
max_length=128,
verbose_name="Phone number",
),
),
migrations.AlterField(
model_name='casestudy',
name='shown_on_other_platforms',
field=models.BooleanField(default=True, verbose_name='Is this case study shown on other platforms?'),
model_name="casestudy",
name="shown_on_other_platforms",
field=models.BooleanField(
default=True,
verbose_name="Is this case study shown on other platforms?",
),
),
migrations.AlterField(
model_name='casestudy',
name='shown_on_other_platforms_detail',
field=models.TextField(blank=True, default='', help_text='Please provide links to other places the case study appears.', verbose_name='Shown on other platforms - Detail'),
model_name="casestudy",
name="shown_on_other_platforms_detail",
field=models.TextField(
blank=True,
default="",
help_text="Please provide links to other places the case study appears.",
verbose_name="Shown on other platforms - Detail",
),
preserve_default=False,
),
]