From a3f34ea58ef80657b9c2ad263b4fd5a80f1d3ceb Mon Sep 17 00:00:00 2001 From: Bert Palm <bert.palm@ufz.de> Date: Thu, 28 Nov 2019 17:23:17 +0100 Subject: [PATCH] added != as flagger operator --- saqc/flagger/baseflagger.py | 1 + 1 file changed, 1 insertion(+) diff --git a/saqc/flagger/baseflagger.py b/saqc/flagger/baseflagger.py index ec91d7767..0eb4f8b9e 100644 --- a/saqc/flagger/baseflagger.py +++ b/saqc/flagger/baseflagger.py @@ -14,6 +14,7 @@ from saqc.lib.tools import toSequence, assertScalar, assertDataFrame COMPARATOR_MAP = { + "!=": op.ne, "==": op.eq, ">=": op.ge, ">": op.gt, -- GitLab