mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
fix: Remove unnecessary f-strings in args_formatter.py
This commit is contained in:
parent
5931979b74
commit
a4e1745eca
1 changed files with 3 additions and 3 deletions
|
@ -148,9 +148,9 @@ class YamlHelpFormatter(argparse.HelpFormatter):
|
|||
parts.append(f"#{switch}: xxx")
|
||||
parts.append("## Specify multiple values like this:")
|
||||
parts.append(f"#{switch}:")
|
||||
parts.append(f"# - xxx")
|
||||
parts.append(f"# - yyy")
|
||||
parts.append(f"# - zzz")
|
||||
parts.append("# - xxx")
|
||||
parts.append("# - yyy")
|
||||
parts.append("# - zzz")
|
||||
else:
|
||||
if switch.endswith("color"):
|
||||
parts.append(f'#{switch}: "xxx"\n')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue