style: Line wrap long string literals

This commit is contained in:
Paul Gauthier 2025-06-20 13:45:12 -07:00 committed by Paul Gauthier (aider)
parent caf212c8d1
commit a1c2eeb88a
2 changed files with 7 additions and 2 deletions

View file

@ -143,7 +143,10 @@ def get_parser(default_config_files, git_root):
group.add_argument(
"--thinking-tokens",
type=str,
help="Set the thinking token budget for models that support it. Use 0 to disable. (default: not set)",
help=(
"Set the thinking token budget for models that support it. Use 0 to disable. (default:"
" not set)"
),
)
group.add_argument(
"--verify-ssl",

View file

@ -1565,7 +1565,9 @@ class Commands:
else:
formatted_budget = model.get_thinking_tokens()
budget = model.get_raw_thinking_tokens()
self.io.tool_output(f"Set thinking token budget to {budget:,} tokens ({formatted_budget}).")
self.io.tool_output(
f"Set thinking token budget to {budget:,} tokens ({formatted_budget})."
)
self.io.tool_output()