We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried to add sqlalchemy-stubs into my project and I experience problems with following construct:
sqlalchemy-stubs
db.execute(select(User).filter_by(id=user_id))
mypy error is:
error: "Select" has no attribute "filter_by" [attr-defined]
I've looked into sqlalchemy code and Select construct clearly has filter_by method.
Select
filter_by
I use Python 3.9.5 with sqlalchemy==1.4.41, mypy==0.990 and sqlalchemy-stubs==0.4.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried to add
sqlalchemy-stubs
into my project and I experience problems with following construct:mypy error is:
I've looked into sqlalchemy code and
Select
construct clearly hasfilter_by
method.I use Python 3.9.5 with sqlalchemy==1.4.41, mypy==0.990 and sqlalchemy-stubs==0.4.
The text was updated successfully, but these errors were encountered: