From 4bd7113edb1d92001074f1a48585585947ce0140 Mon Sep 17 00:00:00 2001 From: Denis Anikin Date: Tue, 28 Jun 2022 19:52:25 +0300 Subject: [PATCH] Black fail fix --- whole_app/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/whole_app/views.py b/whole_app/views.py index 7cd99c6..e2fac2a 100644 --- a/whole_app/views.py +++ b/whole_app/views.py @@ -8,7 +8,9 @@ from .settings import SETTINGS -SPELL_APP: typing.Final[fastapi.FastAPI] = fastapi.FastAPI(docs_url=SETTINGS.docs_url, openapi_url=f"{SETTINGS.api_prefix}/openapi.json") +SPELL_APP: typing.Final[fastapi.FastAPI] = fastapi.FastAPI( + docs_url=SETTINGS.docs_url, openapi_url=f"{SETTINGS.api_prefix}/openapi.json" +) CURRENT_APP_VERSION: typing.Final[str] = misc_helpers.parse_version_from_local_file() if SETTINGS.debug: SPELL_APP.add_middleware(