style: format code with linter

This commit is contained in:
Paul Gauthier (aider) 2024-08-28 15:20:35 -07:00
parent 8c1fa3e9ff
commit 4d08f9c6c5

View file

@ -647,7 +647,9 @@ class TestMain(TestCase):
result = setup_git_home(mock_io_instance)
self.assertEqual(result, Path(temp_home) / "new_project")
mock_make_new_repo.assert_called_with(Path(temp_home) / "new_project", mock_io_instance)
mock_make_new_repo.assert_called_with(
Path(temp_home) / "new_project", mock_io_instance
)
@patch("aider.main.InputOutput")
@patch("aider.main.Path")