Run black over entire codebase
This commit is contained in:
@ -8,14 +8,19 @@ from django.db import migrations, models
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('files', '0003_auto_20180526_1547'),
|
||||
('map', '0064_auto_20180526_1536'),
|
||||
("files", "0003_auto_20180526_1547"),
|
||||
("map", "0064_auto_20180526_1536"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='casestudy',
|
||||
name='images',
|
||||
field=models.ManyToManyField(blank=True, related_name='image_for', to='files.ImageFile', verbose_name='Images'),
|
||||
),
|
||||
model_name="casestudy",
|
||||
name="images",
|
||||
field=models.ManyToManyField(
|
||||
blank=True,
|
||||
related_name="image_for",
|
||||
to="files.ImageFile",
|
||||
verbose_name="Images",
|
||||
),
|
||||
)
|
||||
]
|
||||
|
Reference in New Issue
Block a user