Skip to content

Commit

Permalink
[CHIA-958] In cmd class framework: help -> short_help (#18334)
Browse files Browse the repository at this point in the history
help -> short_help
  • Loading branch information
Quexington authored Jul 18, 2024
1 parent a44d4e1 commit 8fcfd20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/cmds/cmd_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8fcfd20

Please sign in to comment.