From 6d1748096836fdb736bbe9d9c7ca3964451973d1 Mon Sep 17 00:00:00 2001 From: Mark Mutti Date: Wed, 10 Sep 2025 11:51:30 -0700 Subject: [PATCH] Adds "Medical Aid" to ignore list --- firebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firebot.py b/firebot.py index 8c05a15..331f291 100755 --- a/firebot.py +++ b/firebot.py @@ -355,7 +355,7 @@ def is_fire(inci_dict): Simple algo determines whether the given incident matches our criteria for a fire incident """ - ignore_list = "DAILY STATUS" + ignore_list = ["DAILY STATUS", "MEDICAL AID"] if ( "FIRE" in inci_dict["type"].strip().upper()