From 9884d838ea6ecea935b95ff044cba53d12909694 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 28 Sep 2024 14:48:23 -0700 Subject: [PATCH] style: run linter and format test_commands.py for improved readability --- tests/basic/test_commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index f460578bb..b4c859a57 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -104,7 +104,8 @@ class TestCommands(TestCase): # Assert that tool_output was called with the expected preview expected_preview = ( - "Copied last assistant message to clipboard. Preview: Latest assistant message in cur_messages" + "Copied last assistant message to clipboard. Preview: Latest assistant message in" + " cur_messages" ) mock_tool_output.assert_any_call(expected_preview) io = InputOutput(pretty=False, yes=True)