Skip to content

Commit d9d40ab

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent ad94998 commit d9d40ab

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

blog/migrations/0006_entry_is_searchable.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@
66
class Migration(migrations.Migration):
77

88
dependencies = [
9-
('blog', '0005_entry_social_media_card'),
9+
("blog", "0005_entry_social_media_card"),
1010
]
1111

1212
operations = [
1313
migrations.AddField(
14-
model_name='entry',
15-
name='is_searchable',
16-
field=models.BooleanField(default=False, help_text='Tick to make this entry appear in the Django documentation search.'),
14+
model_name="entry",
15+
name="is_searchable",
16+
field=models.BooleanField(
17+
default=False,
18+
help_text="Tick to make this entry appear in the Django documentation search.",
19+
),
1720
),
1821
]

0 commit comments

Comments
 (0)