Linted .py files
Some checks failed
CI / Lint & Format (push) Has been cancelled
CI / Tests (Pytest + Alembic + Postgres) (push) Has been cancelled
CI / Docker Build (push) Has been cancelled

This commit is contained in:
2025-09-22 20:34:29 +01:00
parent e713f4cc6c
commit f04b04339f
14 changed files with 57 additions and 33 deletions

View File

@@ -1,12 +1,13 @@
# ruff was driving me crazy with imported not used, noqa on all of these..
from fastapi import Depends, HTTPException, status # noqa: F401
from fastapi.security import HTTPBearer # noqa: F401
from jose import jwt, JWTError # noqa: F401
from app.core.config import settings # noqa: F401
from app.db.session import get_session # noqa: F401
from sqlalchemy.ext.asyncio import AsyncSession # noqa: F401
from app.models.user import User # noqa: F401
from sqlalchemy import select # noqa: F401
from fastapi import Depends, HTTPException, status # noqa: F401
from fastapi.security import HTTPBearer # noqa: F401
from jose import JWTError, jwt # noqa: F401
from sqlalchemy import select # noqa: F401
from sqlalchemy.ext.asyncio import AsyncSession # noqa: F401
from app.core.config import settings # noqa: F401
from app.db.session import get_session # noqa: F401
from app.models.user import User # noqa: F401
bearer = HTTPBearer()