From 8fcfd20d8893df17c7a497797ac17cb66c7862d7 Mon Sep 17 00:00:00 2001 From: Matt Hauff Date: Thu, 18 Jul 2024 09:39:29 -0700 Subject: [PATCH] [CHIA-958] In cmd class framework: help -> short_help (#18334) help -> short_help --- chia/cmds/cmd_classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chia/cmds/cmd_classes.py b/chia/cmds/cmd_classes.py index 498f8d5abd96..663d51e06874 100644 --- a/chia/cmds/cmd_classes.py +++ b/chia/cmds/cmd_classes.py @@ -252,7 +252,7 @@ def _chia_command(cls: Type[ChiaCommand]) -> Type[ChiaCommand]: kw_only=True, )(cls) - cmd.command(name, help=help)(_convert_class_to_function(wrapped_cls)) + cmd.command(name, short_help=help)(_convert_class_to_function(wrapped_cls)) return wrapped_cls return _chia_command