forked from mirrors/bookwyrm
Black formatting
This commit is contained in:
parent
d3a4282f11
commit
396a43136d
1 changed files with 17 additions and 7 deletions
|
@ -7,18 +7,28 @@ from django.db import migrations, models
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('bookwyrm', '0054_auto_20210319_1942'),
|
("bookwyrm", "0054_auto_20210319_1942"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='comment',
|
model_name="comment",
|
||||||
name='progress',
|
name="progress",
|
||||||
field=models.IntegerField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(0)]),
|
field=models.IntegerField(
|
||||||
|
blank=True,
|
||||||
|
null=True,
|
||||||
|
validators=[django.core.validators.MinValueValidator(0)],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='comment',
|
model_name="comment",
|
||||||
name='progress_mode',
|
name="progress_mode",
|
||||||
field=models.CharField(blank=True, choices=[('PG', 'page'), ('PCT', 'percent')], default='PG', max_length=3, null=True),
|
field=models.CharField(
|
||||||
|
blank=True,
|
||||||
|
choices=[("PG", "page"), ("PCT", "percent")],
|
||||||
|
default="PG",
|
||||||
|
max_length=3,
|
||||||
|
null=True,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue