refactor(backend): solve copilot comments

This commit is contained in:
2025-09-24 20:15:25 +02:00
parent 106497e791
commit 615803de2d
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
from sqlalchemy import Column, String
from fastapi_users.db import SQLAlchemyBaseUserTableUUID
from app.core.base import Base # Import Base z base.py
from app.core.base import Base
class User(SQLAlchemyBaseUserTableUUID, Base):
first_name = Column(String(length=100), nullable=True)