Skip to content

Commit

Permalink
Black fail fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xfenix committed Jun 28, 2022
1 parent 3b136d7 commit 4bd7113
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion whole_app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 4bd7113

Please sign in to comment.