From 5ba306bde2c35f20d0063111d1614f072e654743 Mon Sep 17 00:00:00 2001 From: store <store> Date: Thu, 31 Aug 2023 11:49:10 +0200 Subject: [PATCH] bug: do not use invalid values by default --- api/core/data/mean.py | 2 +- client/src/helpers/utils.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/core/data/mean.py b/api/core/data/mean.py index aa16d67..3e45d9c 100644 --- a/api/core/data/mean.py +++ b/api/core/data/mean.py @@ -56,7 +56,7 @@ class Mean: Params = None @staticmethod - def Aggregate(cursor: any, meanType: MeanType, ids: tuple, fromTime: str, toTime: str, coverage: int = 75, verificationFlag: int = 3, fraction: int = 10, addMetadata: bool = False, useInvalidValues: bool = True): + def Aggregate(cursor: any, meanType: MeanType, ids: tuple, fromTime: str, toTime: str, coverage: int = 75, verificationFlag: int = 3, fraction: int = 10, addMetadata: bool = False, useInvalidValues: bool = False): sql = "" params = {"ids": ids, "fromTime": fromTime, "toTime": toTime, "verificationFlag": verificationFlag, "coverage": coverage, "fraction": fraction, "useInvalidValues": useInvalidValues} diff --git a/client/src/helpers/utils.js b/client/src/helpers/utils.js index 498531b..31de5d4 100644 --- a/client/src/helpers/utils.js +++ b/client/src/helpers/utils.js @@ -106,4 +106,4 @@ export const filterList = (q, list, exclude_list) => { }); }; -export const version = "3.0.7"; +export const version = "3.0.8"; -- GitLab