Fix formatting of migrations

This commit is contained in:
Jason McBrayer 2019-11-07 13:32:41 -05:00
parent eaf0cbd46b
commit c836861027
1 changed files with 8 additions and 7 deletions

View File

@ -5,14 +5,15 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('brutaldon', '0022_auto_20190506_0938'),
]
dependencies = [("brutaldon", "0022_auto_20190506_0938")]
operations = [
migrations.AddField(
model_name='preference',
name='bundle_notifications',
field=models.BooleanField(default=False, help_text='Collapse together boosts or likes of the same toot in the notifications page.'),
),
model_name="preference",
name="bundle_notifications",
field=models.BooleanField(
default=False,
help_text="Collapse together boosts or likes of the same toot in the notifications page.",
),
)
]