From 51c2ea473187f8a8ac1d7bcb46da80d598d53943 Mon Sep 17 00:00:00 2001 From: gabrpham_amdeng Date: Fri, 22 Aug 2025 16:09:13 -0500 Subject: [PATCH] reverted help formatting column width to 80 Signed-off-by: gabrpham_amdeng [ROCm/amdsmi commit: 39b26104d47b5980bb3270e1254e86b26cfacf5d] --- projects/amdsmi/amdsmi_cli/amdsmi_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/amdsmi/amdsmi_cli/amdsmi_parser.py b/projects/amdsmi/amdsmi_cli/amdsmi_parser.py index d32526b13e..d0744496fc 100644 --- a/projects/amdsmi/amdsmi_cli/amdsmi_parser.py +++ b/projects/amdsmi/amdsmi_cli/amdsmi_parser.py @@ -49,7 +49,7 @@ class AMDSMIParserHelpFormatter(argparse.HelpFormatter): # Custom Help Formatter for not duplicating the metavar in the subparsers class AMDSMISubparserHelpFormatter(argparse.RawTextHelpFormatter): def __init__(self, prog): - super().__init__(prog, indent_increment=2, max_help_position=24, width=90) + super().__init__(prog, indent_increment=2, max_help_position=80, width=90) self._action_max_length = 20 def _format_action_invocation(self, action):