sqlalchemy-stubs
sqlalchemy-stubs copied to clipboard
error: Argument 1 to "correlate" of "Exists" has incompatible type "Type[MyModel]"; expected "FromClause"
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(...))