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,7 +1,9 @@
from sqlalchemy.orm import Mapped, mapped_column
from sqlalchemy import String, Boolean
from app.db.session import engine # only for Alembic discovery, not used here
from sqlalchemy.orm import declarative_base
from sqlalchemy import Boolean, String
from sqlalchemy.orm import Mapped, declarative_base, mapped_column
# only for Alembic discovery, not used here
from app.db.session import engine # noqa: F401
Base = declarative_base()
class User(Base):