From c83686102750854684003f64534f17fdfefc9410 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Thu, 7 Nov 2019 13:32:41 -0500 Subject: [PATCH] Fix formatting of migrations --- .../0023_preference_bundle_notifications.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/brutaldon/migrations/0023_preference_bundle_notifications.py b/brutaldon/migrations/0023_preference_bundle_notifications.py index 303aed5..9bea064 100644 --- a/brutaldon/migrations/0023_preference_bundle_notifications.py +++ b/brutaldon/migrations/0023_preference_bundle_notifications.py @@ -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.", + ), + ) ]