From 536fd4deeab3aa0c46510ba95201c07f2a9bf7b8 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 28 Oct 2025 13:49:46 -0700 Subject: [PATCH] Update checklist.py --- modules/checklist.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/checklist.py b/modules/checklist.py index 3a7cfe3..d630aad 100644 --- a/modules/checklist.py +++ b/modules/checklist.py @@ -361,8 +361,8 @@ def process_checklist_command(nodeID, message, name="none", location="none"): elif "?" in message_lower: if not reverse_in_out: return ("Command: checklist followed by\n" - "checkin [interval] [note] - check in (optional interval in minutes)\n" - "checkout [note] - check out\n" + "checkin [interval] [note]\n" + "checkout [note]\n" "purgein - delete your checkin\n" "purgeout - delete your checkout\n" "checklistapprove - approve checkin\n" @@ -370,8 +370,8 @@ def process_checklist_command(nodeID, message, name="none", location="none"): "Example: checkin 60 Hunting in tree stand") else: return ("Command: checklist followed by\n" - "checkout [interval] [note] - check out (optional interval)\n" - "checkin [note] - check in\n" + "checkout [interval] [note]\n" + "checkin [note]\n" "purgeout - delete your checkout\n" "purgein - delete your checkin\n" "Example: checkout 60 Leaving park")