1
0
Fork 0

linting fixes

This commit is contained in:
Hugh Rundle 2022-07-03 17:14:13 +10:00
parent f8e51b5826
commit b82cf887e2
4 changed files with 14 additions and 4 deletions

View file

@ -7,13 +7,13 @@ from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('bookwyrm', '0150_readthrough_stopped_date'),
("bookwyrm", "0150_readthrough_stopped_date"),
]
operations = [
migrations.AddField(
model_name='user',
name='show_guided_tour',
model_name="user",
name="show_guided_tour",
field=bookwyrm.models.fields.BooleanField(default=True),
),
]