From 0d8d5465457c1ac6bfbf9cb4b17fd7d5b2d9c252 Mon Sep 17 00:00:00 2001 From: Oscar Krause Date: Tue, 21 Jan 2025 07:31:18 +0100 Subject: [PATCH] typos --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 97ec345..e6a9d0a 100644 --- a/app/main.py +++ b/app/main.py @@ -89,7 +89,7 @@ async def lifespan(_: FastAPI): config = dict(openapi_url=None, docs_url=None, redoc_url=None) # dict(openapi_url='/-/openapi.json', docs_url='/-/docs', redoc_url='/-/redoc') app = FastAPI(title='FastAPI-DLS', description='Minimal Delegated License Service (DLS).', version=VERSION, lifespan=lifespan, **config) -app.mount('/static', StaticFiles(directory=join(dirname(__file__), 'static'), html=True), name='static'), +app.mount('/static', StaticFiles(directory=join(dirname(__file__), 'static'), html=True), name='static') templates = Jinja2Templates(directory=join(dirname(__file__), 'templates')) app.debug = DEBUG