style: Update color configuration comments to use quotes

This commit is contained in:
Paul Gauthier 2025-03-06 17:09:29 -08:00 committed by Paul Gauthier (aider)
parent a412a65315
commit 5931979b74
6 changed files with 102 additions and 99 deletions

View file

@ -152,7 +152,10 @@ class YamlHelpFormatter(argparse.HelpFormatter):
parts.append(f"# - yyy")
parts.append(f"# - zzz")
else:
parts.append(f"#{switch}: xxx\n")
if switch.endswith("color"):
parts.append(f'#{switch}: "xxx"\n')
else:
parts.append(f"#{switch}: xxx\n")
###
# parts.append(str(action))