From eadb8d5d0a39e2fdf1218de8f572cfb6d56b7993 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 9 Mar 2025 08:43:23 -0700 Subject: [PATCH] style: fix linting issues in test_reasoning.py --- tests/basic/test_reasoning.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_reasoning.py b/tests/basic/test_reasoning.py index afe6c8731..fdb2fdd77 100644 --- a/tests/basic/test_reasoning.py +++ b/tests/basic/test_reasoning.py @@ -420,7 +420,9 @@ End""" # Add required attributes expected by show_send_output self.choices = [MagicMock()] self.choices[0].message.content = content - self.choices[0].message.reasoning = reasoning # Using reasoning instead of reasoning_content + self.choices[0].message.reasoning = ( + reasoning # Using reasoning instead of reasoning_content + ) self.finish_reason = "stop" mock_completion = MockCompletion(main_content, reasoning_content)