Fixed an import in one of the .pyi files that was triggering an
assertion error in some versions of mypy.
Change-Id: Ifc663a876ebe5bebf8411c1eb451f2a25fe4dec0
Fixes: #897
from sqlalchemy.engine.base import Connection
from sqlalchemy.sql.schema import MetaData
- from .migration import MigrationContext
from .runtime.migration import _ProxyTransaction
+ from .runtime.migration import MigrationContext
### end imports ###
--- /dev/null
+.. change::
+ :tags: bug, mypy
+ :tickets: 897
+
+ Fixed an import in one of the .pyi files that was triggering an
+ assertion error in some versions of mypy.