From 90ea84c557601e06c663f17355ad3c4cc072f956 Mon Sep 17 00:00:00 2001 From: Kraiem Taha Yassine Date: Thu, 5 Sep 2024 16:10:31 +0200 Subject: [PATCH] Dev (#2539) * fix(chalice): fixed Math-operators validation refactor(chalice): search for sessions that have events for heatmaps * refactor(chalice): search for sessions that have at least 1 location event for heatmaps * fix(chalice): fixed Math-operators validation refactor(chalice): search for sessions that have events for heatmaps * refactor(chalice): search for sessions that have at least 1 location event for heatmaps * feat(chalice): autocomplete return top 10 with stats * fix(chalice): fixed autocomplete top 10 meta-filters * fix(chalice): fixed usability test logger --- api/chalicelib/core/db_request_handler.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/chalicelib/core/db_request_handler.py b/api/chalicelib/core/db_request_handler.py index 111c39ad4..f7e27e239 100644 --- a/api/chalicelib/core/db_request_handler.py +++ b/api/chalicelib/core/db_request_handler.py @@ -1,5 +1,8 @@ import logging -from chalicelib.utils import helper, pg_client + +from chalicelib.utils import pg_client + +logger = logging.getLogger(__name__) class DatabaseRequestHandler: