diff --git a/transport/sql/common.py b/transport/sql/common.py index da87cba..33c5d89 100644 --- a/transport/sql/common.py +++ b/transport/sql/common.py @@ -71,7 +71,6 @@ class Base: @TODO: Execution of stored procedures """ if sql.strip().lower().startswith('select') or sql.strip().lower().startswith('with') or sql.strip().startswith('show'): - print (self._engine) return pd.read_sql(sql,self._engine) else: _handler = self._engine.connect()