From 11facc9ee906c45d9fa910e07229b7e036143b75 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 8 Feb 2025 16:01:48 +0100 Subject: [PATCH] Continued: - keyword "is" is to much here --- daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index f2eec11..cc268d0 100755 --- a/daemon.py +++ b/daemon.py @@ -219,7 +219,7 @@ LIMIT ?", [ result = {} for row in list(rows): - if row["reason"] is not in [None, ""]: + if row["reason"] not in [None, ""]: row["reason"] = row["reason"].replace(",", " ").replace(" ", " ") if row["block_level"] in result: -- 2.39.5