Stefano Pedroni

Results 1 issues of Stefano Pedroni

I would like to programmatically define the attributes of my model. Given a predefined entity in **user.py**: ``` import uuid from pydantic import BaseModel class User(BaseModel): uuid: uuid.UUID name: str...