mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
fix: Remove f-string prefix from line without placeholders
This commit is contained in:
parent
1603ffa6c2
commit
05b3b3df88
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ class YamlHelpFormatter(argparse.HelpFormatter):
|
|||
parts.append(f"#{switch}: {default}\n")
|
||||
elif action.nargs in ("*", "+") or isinstance(action, argparse._AppendAction):
|
||||
parts.append(f"#{switch}: xxx")
|
||||
parts.append(f"## Specify multiple values like this:")
|
||||
parts.append("## Specify multiple values like this:")
|
||||
parts.append(f"#{switch}: [xxx,yyyy,zzz]\n")
|
||||
else:
|
||||
parts.append(f"#{switch}: xxx\n")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue