From c01db8783d82ec714d741cdd2a425c8ecfb905ee Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 18 Mar 2025 11:57:38 -0700 Subject: [PATCH] style: Format warning messages to adhere to line length limit --- aider/main.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/aider/main.py b/aider/main.py index 0f99c2379..60e6e7ddd 100644 --- a/aider/main.py +++ b/aider/main.py @@ -791,7 +791,8 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F if args.reasoning_effort is not None: if main_model.accepts_settings and "reasoning_effort" not in main_model.accepts_settings: io.tool_warning( - f"Warning: The model {main_model.name} may not support the 'reasoning_effort' setting." + f"Warning: The model {main_model.name} may not support the 'reasoning_effort'" + " setting." ) main_model.set_reasoning_effort(args.reasoning_effort) @@ -799,7 +800,8 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F if args.thinking_tokens is not None: if main_model.accepts_settings and "thinking_tokens" not in main_model.accepts_settings: io.tool_warning( - f"Warning: The model {main_model.name} may not support the 'thinking_tokens' setting." + f"Warning: The model {main_model.name} may not support the 'thinking_tokens'" + " setting." ) main_model.set_thinking_tokens(args.thinking_tokens)