From 34d5c557d8360d73932f8b61d70fe98056ca87be Mon Sep 17 00:00:00 2001 From: "R.G. Wood" Date: Sat, 7 Oct 2023 13:32:18 +0100 Subject: [PATCH] Fix syntax styling --- bookwyrm/urls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bookwyrm/urls.py b/bookwyrm/urls.py index 60b630f49..e8be9a540 100644 --- a/bookwyrm/urls.py +++ b/bookwyrm/urls.py @@ -35,7 +35,9 @@ urlpatterns = [ ), path( "manifest.json", - TemplateView.as_view(template_name="manifest.json", content_type="application/json"), + TemplateView.as_view( + template_name="manifest.json", content_type="application/json" + ), ), # federation endpoints re_path(r"^inbox/?$", views.Inbox.as_view(), name="inbox"),