From 4d08f9c6c5dd9e7bfd7c69637f3c579d341b420e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 28 Aug 2024 15:20:35 -0700 Subject: [PATCH] style: format code with linter --- tests/basic/test_main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_main.py b/tests/basic/test_main.py index 25dc78e09..c3469a030 100644 --- a/tests/basic/test_main.py +++ b/tests/basic/test_main.py @@ -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")