From 1350093d5ac28679259a32b12868e02706086971 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 30 Aug 2024 11:52:35 +0200 Subject: [PATCH] removed apply_threshold check from calc_aggregation_ready as these are independent operations --- dap/algos/aggregation.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dap/algos/aggregation.py b/dap/algos/aggregation.py index 18109f0..10b733e 100644 --- a/dap/algos/aggregation.py +++ b/dap/algos/aggregation.py @@ -62,11 +62,6 @@ def calc_aggregate(results, data, aggregator): def calc_aggregation_ready(results, data, aggregator): apply_aggregation = results.get("apply_aggregation", False) - apply_threshold = results.get("apply_threshold", False) - - if not apply_aggregation and not apply_threshold: - return False - if not apply_aggregation: return False