Skip to content

Commit a9f1f3c

Browse files
lint issue fix
1 parent 199bcef commit a9f1f3c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/api/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99

10-
import logging_config # Ensure logging is configured before other imports
10+
import logging_config # noqa: F401 - Ensure logging is configured before other imports
1111
from contextlib import asynccontextmanager
1212
from fastapi import FastAPI
1313
from fastapi.middleware.cors import CORSMiddleware
@@ -21,6 +21,7 @@
2121
from api.api_routes import router as backend_router
2222
from api.history_routes import router as history_router
2323

24+
2425
@asynccontextmanager
2526
async def lifespan(fastapi_app: FastAPI):
2627
"""

0 commit comments

Comments
 (0)