dropbox / sqlalchemy-stubs

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

Add Iterable[Any] protocol to BaseRowProxy #215

Closed Azureblade3808 closed 3 years ago

Azureblade3808 commented 3 years ago

Unlike normal Mapping, BaseRowProxy iterates over its values instead of its keys. Adding an Iterable protocol would fix the implied return type of __iter__ method.

Azureblade3808 commented 3 years ago

Failed because of MRO inconsistency. Will try some other way.