fix: add missing sqlalchemy imports (select, text, delete, update) to main.py

This commit is contained in:
2026-05-01 09:51:24 +00:00
parent b8dd023233
commit 82024a36c4
+1
View File
@@ -12,6 +12,7 @@ from fastapi.staticfiles import StaticFiles
from fastapi.templating import Jinja2Templates
from markupsafe import Markup, escape
from sqlalchemy import select
from sqlalchemy import delete, select, text, update
from sqlalchemy.orm import Session
from starlette.responses import HTMLResponse as _HR