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,15 +8,20 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0045_auto_20180331_0517'),
]
dependencies = [("map", "0045_auto_20180331_0517")]
operations = [
migrations.AlterField(
model_name='casestudy',
name='video',
field=models.URLField(blank=True, default='', help_text='Copy the URL to a YouTube or Vimeo video that relates to the case study.', max_length=80, validators=[apps.map.validators.YouTubeOrVimeoValidator()], verbose_name='Video URL'),
model_name="casestudy",
name="video",
field=models.URLField(
blank=True,
default="",
help_text="Copy the URL to a YouTube or Vimeo video that relates to the case study.",
max_length=80,
validators=[apps.map.validators.YouTubeOrVimeoValidator()],
verbose_name="Video URL",
),
preserve_default=False,
),
)
]