From 6d8e4e8fb1202eb96fdd7688b480d5e41e346b14 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 25 Mar 2025 11:05:58 -1000 Subject: [PATCH] style: Fix string quote consistency in test_coder.py --- tests/basic/test_coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_coder.py b/tests/basic/test_coder.py index 8e36cd134..8fa5d6426 100644 --- a/tests/basic/test_coder.py +++ b/tests/basic/test_coder.py @@ -302,7 +302,7 @@ class TestCoder(unittest.TestCase): # Pre-format the Windows path to avoid backslash issues in f-string expressions windows_path = test_files[2].replace("/", "\\") - win_path3 = test_files[3].replace('/', '\\') + win_path3 = test_files[3].replace("/", "\\") for fname in test_files: fpath = Path(fname)