Hacker News new | ask | show | jobs
by davedx 406 days ago
Can mypy type check SQLAlchemy somehow? That's what caused me to give up on Python type checking recently
1 comments

SQLAlchemy 2.x has direct support for mypy, it works out of the box, no longer needing mypy plugins. Many things in SQLAlchemy as are still dynamic and can't be type checked, but the native support works great where it can.
I’ll give that a try. Thanks