diff --git a/aider/args.py b/aider/args.py index d36009c28..fe35e2c1b 100644 --- a/aider/args.py +++ b/aider/args.py @@ -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", diff --git a/aider/commands.py b/aider/commands.py index 3c62ff2ee..2402641f3 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -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()