From 6dc54abf439ea0a894612791ee33df0ce0fdb310 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 26 Sep 2025 19:16:16 -0700 Subject: [PATCH] enhance --- modules/checklist.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/checklist.py b/modules/checklist.py index 3aef531..6f3a1f4 100644 --- a/modules/checklist.py +++ b/modules/checklist.py @@ -162,6 +162,17 @@ def process_checklist_command(nodeID, message, name="none", location="none"): return delete_checkin(nodeID) elif "purgeout" in message.lower(): return delete_checkout(nodeID) + elif "?" in message.lower(): + if not reverse_in_out: + return ("Command: checklist followed by\n" + "checkout to check out\n" + "purgeout to delete your checkout record\n" + "Example: checkin Arrived at park") + else: + return ("Command: checklist followed by\n" + "checkin to check out\n" + "purgeout to delete your checkin record\n" + "Example: checkout Leaving park") elif "checklist" in message.lower(): return list_checkin() else: