From 5ed3320c9bae75e223bdf91c2fa4cc09e9637e06 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Fri, 19 Mar 2021 12:16:44 -0700 Subject: [PATCH] Formatting --- bookwyrm/migrations/0053_auto_20210319_1913.py | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/bookwyrm/migrations/0053_auto_20210319_1913.py b/bookwyrm/migrations/0053_auto_20210319_1913.py index be086cd2..023319b3 100644 --- a/bookwyrm/migrations/0053_auto_20210319_1913.py +++ b/bookwyrm/migrations/0053_auto_20210319_1913.py @@ -8,13 +8,23 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('bookwyrm', '0052_user_show_goal'), + ("bookwyrm", "0052_user_show_goal"), ] operations = [ migrations.AlterField( - model_name='review', - name='rating', - field=bookwyrm.models.fields.DecimalField(blank=True, decimal_places=2, default=None, max_digits=3, null=True, validators=[django.core.validators.MinValueValidator(1), django.core.validators.MaxValueValidator(5)]), + model_name="review", + name="rating", + field=bookwyrm.models.fields.DecimalField( + blank=True, + decimal_places=2, + default=None, + max_digits=3, + null=True, + validators=[ + django.core.validators.MinValueValidator(1), + django.core.validators.MaxValueValidator(5), + ], + ), ), ]