From 5fe69b782e990af85abafa793ee5217ab0d86e12 Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Fri, 1 Nov 2019 16:26:53 -0400 Subject: [PATCH] Fix missing import Base --- proxstar/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxstar/db.py b/proxstar/db.py index 588ee21..2505299 100644 --- a/proxstar/db.py +++ b/proxstar/db.py @@ -4,7 +4,7 @@ from dateutil.relativedelta import relativedelta from sqlalchemy import exists from proxstar.ldapdb import is_rtp -from proxstar.models import (Allowed_Users, Ignored_Pools, Pool_Cache, +from proxstar.models import (Base, Allowed_Users, Ignored_Pools, Pool_Cache, #pylint: disable=unused-import Template, Usage_Limit, VM_Expiration)