dropbox / sqlalchemy-stubs

Mypy plugin and stubs for SQLAlchemy
Apache License 2.0
570 stars 101 forks source link

error: Argument 1 to "correlate" of "Exists" has incompatible type "Type[MyModel]"; expected "FromClause" #176

Open cancan101 opened 3 years ago

cancan101 commented 3 years ago

I am passing MyModel class to the correlate of an Exists clause and getting the the following error:

error: Argument 1 to "correlate" of "Exists" has incompatible type "Type[MyModel]"; expected "FromClause"

where MyModel is a subclass of Base (Base = declarative_base(...))