[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,14 +1,14 @@
import logging
logger = logging.getLogger(__name__)
from fastapi import APIRouter, Depends, HTTPException
from sqlalchemy import exc
from sqlmodel import Session, select
from app.model.models import *
from app.model.models import Card
from app.services.auth import auth_is_admin
from app.services.database import add_and_refresh, get_session
logger = logging.getLogger(__name__)
debug_router = APIRouter(
prefix="/api/v1/debug",
tags=["Debug items - maybe dont show this in UI"],