From aeff2a214b568267282531037b6add89732a04ac Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Wed, 17 Dec 2025 10:54:40 -0600 Subject: [PATCH] bug fix, schema should be a string for SQLAlchemy ~ 2.0.0 --- transport/iowrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transport/iowrapper.py b/transport/iowrapper.py index 6fd1196..105d024 100644 --- a/transport/iowrapper.py +++ b/transport/iowrapper.py @@ -111,8 +111,8 @@ class IETL(IReader) : _data = super().read(**_args) _schema = super().meta() for _kwargs in self._targets : - if _schema : - _kwargs['schema'] = _schema + # if _schema : + # _kwargs['schema'] = _schema self.post(_data,**_kwargs) return _data