Quansight / ragna

RAG orchestration framework ⛵️
https://ragna.chat
BSD 3-Clause "New" or "Revised" License
177 stars 22 forks source link

mypy for sqlalchemy #402

Closed pmeier closed 4 months ago

pmeier commented 5 months ago

While looking into the lint issues of #401, I realized we never activated the SQLAlchemy mypy plugin. This PR makes up for that.

This surfaces some errors. When columns are defined without nullable=False, the value of the field is always Optional[T]. Since we don't have None values and won't have them for the currently available columns in the future, I've set nullable=False everywhere.