style: Format code with linter

This commit is contained in:
Paul Gauthier (aider) 2024-08-10 09:10:46 -07:00
parent 364fda461f
commit 9d0b3d17bc

View file

@ -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()