From c7f43b3100c55b3fba45232ef5ab0229dfd844c2 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Sun, 31 May 2026 12:43:38 -0700 Subject: [PATCH] Document the use of --ch-index along with --reply a little --- meshtastic/__main__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 9962506..b642080 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -1889,7 +1889,10 @@ def addRemoteActionArgs(parser: argparse.ArgumentParser) -> argparse.ArgumentPar ) group.add_argument( - "--reply", help="Reply to received messages", action="store_true" + "--reply", + help="Reply to received messages on the channel they were received. " + "If '--ch-index' is set, only messages on that channel are replied to.", + action="store_true", ) return parser