From 9d0b3d17bcb6b585ba72d36e69654bb71745f232 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 10 Aug 2024 09:10:46 -0700 Subject: [PATCH] style: Format code with linter --- tests/basic/test_commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index 1f6356c15..4cffd4043 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -817,7 +817,9 @@ class TestCommands(TestCase): file_path.write_text("Modified content") # Mock repo.get_commit_message to return a canned commit message - with mock.patch.object(repo, "get_commit_message", return_value="Canned commit message"): + with mock.patch.object( + repo, "get_commit_message", return_value="Canned commit message" + ): # Run cmd_commit commands.cmd_commit()