From 4e39c69161481f40e375316c3ed9aef03b3f27c8 Mon Sep 17 00:00:00 2001 From: Ant Zucaro Date: Sat, 5 Dec 2020 20:59:35 -0500 Subject: [PATCH] Get rid of sqlahelper. --- requirements.txt | 1 - xonstat/__init__.py | 1 - 2 files changed, 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2f98344..31ac192 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,6 @@ pyramid pyramid_beaker pyramid_mako repoze.tm2 -sqlahelper SQLAlchemy transaction waitress diff --git a/xonstat/__init__.py b/xonstat/__init__.py index 8646c02..d1a264d 100644 --- a/xonstat/__init__.py +++ b/xonstat/__init__.py @@ -15,7 +15,6 @@ def main(global_config, **settings): """ # setup the database engine engine = engine_from_config(settings, 'sqlalchemy.', pool_size=5) - sqlahelper.add_engine(engine) # initialize database structures initialize_db(engine) -- 2.39.2