[lint] fix warnings not autofixed by ruff

This commit is contained in:
2026-07-29 02:37:22 +02:00
parent be4e6c8079
commit 9cf21db9f9
9 changed files with 41 additions and 34 deletions

View File

@@ -1,9 +1,8 @@
import logging
from os import getenv, path
from sqlmodel import Session, SQLModel, create_engine
logger = logging.getLogger(__name__)
from os import getenv, path
from sqlmodel import Session, SQLModel, create_engine
SQLALCHEMY_DATABASE_URL = getenv("SQLALCHEMY_DATABASE_URL", "sqlite:///./gatekeeper.db")