From 2283d034504626ce6fbbb3b54805716806877e44 Mon Sep 17 00:00:00 2001 From: Sofia Bilous Date: Tue, 7 Nov 2023 13:50:25 +0200 Subject: [PATCH] linter black --- forum/urls.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/forum/urls.py b/forum/urls.py index 155afcb9d..9d38e36d6 100644 --- a/forum/urls.py +++ b/forum/urls.py @@ -27,5 +27,9 @@ ), path("api/", include("search.urls", namespace="search")), path("api/schema/", SpectacularAPIView.as_view(), name="schema"), - path("api/schema/docs/", SpectacularSwaggerView.as_view(url_name="schema"), name="schema_docs"), + path( + "api/schema/docs/", + SpectacularSwaggerView.as_view(url_name="schema"), + name="schema_docs", + ), ]