style: Fix string quotes in test_coder.py

This commit is contained in:
Paul Gauthier (aider) 2025-03-25 11:01:54 -10:00
parent 7302280417
commit 1272e21603

View file

@ -301,7 +301,7 @@ class TestCoder(unittest.TestCase):
] ]
# Pre-format the Windows path to avoid backslash issues in f-string expressions # Pre-format the Windows path to avoid backslash issues in f-string expressions
windows_path = test_files[2].replace('/', '\\') windows_path = test_files[2].replace("/", "\\")
for fname in test_files: for fname in test_files:
fpath = Path(fname) fpath = Path(fname)