From 6aa05ab11cb624d8c18f213a9899d64eaced4cbc Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 13 May 2025 13:42:04 -0700 Subject: [PATCH] style: Format test file --- tests/basic/test_coder.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_coder.py b/tests/basic/test_coder.py index 362f863b6..d02e9e77f 100644 --- a/tests/basic/test_coder.py +++ b/tests/basic/test_coder.py @@ -860,7 +860,9 @@ two self.assertNotIn(str(ignored_file.resolve()), coder.abs_fnames) self.assertIn(str(regular_file.resolve()), coder.abs_fnames) - mock_io.tool_warning.assert_any_call(f"Skipping {ignored_file.name} that matches gitignore spec.") + mock_io.tool_warning.assert_any_call( + f"Skipping {ignored_file.name} that matches gitignore spec." + ) def test_check_for_urls(self): io = InputOutput(yes=True)