From 655f2f26d2417855464b7e8feffbb10aa0ed2543 Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Wed, 1 Jul 2026 23:31:46 +0200 Subject: [PATCH] solo/help: fix Python 3.14 argparse positional argument crash Python 3.14 rejects action='store_true' on positional arguments. The add_argument calls in _show_help() are display-only (never parsed), so the action kwarg was unnecessary. Co-Authored-By: Claude Sonnet 4.6 --- client/solo/commands/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/solo/commands/help.py b/client/solo/commands/help.py index 7ccddbce3..f14abcd0a 100644 --- a/client/solo/commands/help.py +++ b/client/solo/commands/help.py @@ -89,7 +89,7 @@ class SoloHelp(SoloCommand): name = "%s%s" % (purple(descriptor.get_name()), aliases_str) desc = descriptor.get_description() - group.add_argument(name, help=darkgreen(desc), action="store_true") + group.add_argument(name, help=darkgreen(desc)) parser.print_help() if not self._args: return 1