From 14d503108f8f4e03c20ff34ee8f71a8d4e1ae7d2 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Tue, 21 Jan 2020 18:49:44 -0700 Subject: [PATCH] fix import error --- hyperglass/__init__.py | 1 - hyperglass/api/events.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/hyperglass/__init__.py b/hyperglass/__init__.py index db5d159..58294f6 100644 --- a/hyperglass/__init__.py +++ b/hyperglass/__init__.py @@ -51,7 +51,6 @@ from hyperglass import configuration from hyperglass import constants from hyperglass import exceptions from hyperglass import execution -from hyperglass import query from hyperglass import util stackprinter.set_excepthook() diff --git a/hyperglass/api/events.py b/hyperglass/api/events.py index f834bbf..6ac6f05 100644 --- a/hyperglass/api/events.py +++ b/hyperglass/api/events.py @@ -3,12 +3,12 @@ from starlette.exceptions import HTTPException # Project Imports +from hyperglass.configuration import REDIS_CONFIG from hyperglass.configuration import URL_DEV from hyperglass.configuration import URL_PROD from hyperglass.configuration import frontend_params from hyperglass.configuration import params from hyperglass.exceptions import HyperglassError -from hyperglass.query import REDIS_CONFIG from hyperglass.util import build_frontend from hyperglass.util import check_python from hyperglass.util import check_redis