diff --git a/taskflow/persistence/backends/impl_sqlalchemy.py b/taskflow/persistence/backends/impl_sqlalchemy.py index 4368b78a..24fedc04 100644 --- a/taskflow/persistence/backends/impl_sqlalchemy.py +++ b/taskflow/persistence/backends/impl_sqlalchemy.py @@ -180,7 +180,7 @@ def _ping_listener(dbapi_conn, connection_rec, connection_proxy): raise -class Alchemist(object): +class _Alchemist(object): """Internal <-> external row <-> objects + other helper functions. NOTE(harlowja): for internal usage only. @@ -343,7 +343,7 @@ class Connection(base.Connection): self._engine = backend.engine self._metadata = sa.MetaData() self._tables = tables.fetch(self._metadata) - self._converter = Alchemist(self._tables) + self._converter = _Alchemist(self._tables) @property def backend(self):