We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 199bcef commit a9f1f3cCopy full SHA for a9f1f3c
src/api/app.py
@@ -7,7 +7,7 @@
7
"""
8
9
10
-import logging_config # Ensure logging is configured before other imports
+import logging_config # noqa: F401 - Ensure logging is configured before other imports
11
from contextlib import asynccontextmanager
12
from fastapi import FastAPI
13
from fastapi.middleware.cors import CORSMiddleware
@@ -21,6 +21,7 @@
21
from api.api_routes import router as backend_router
22
from api.history_routes import router as history_router
23
24
+
25
@asynccontextmanager
26
async def lifespan(fastapi_app: FastAPI):
27
0 commit comments