style: fix linting issues in test_repomap.py

This commit is contained in:
Paul Gauthier (aider) 2024-11-27 07:11:49 -08:00
parent 2ce01b157b
commit 9ab46fade7

View file

@ -365,7 +365,9 @@ class TestRepoMapAllLanguages(unittest.TestCase):
filename = "test." + {"csharp": "cs"}.get(lang, lang) filename = "test." + {"csharp": "cs"}.get(lang, lang)
fixture_path = fixture_dir / filename fixture_path = fixture_dir / filename
self.assertTrue(fixture_path.exists(), f"Fixture file missing for {lang}: {fixture_path}") self.assertTrue(
fixture_path.exists(), f"Fixture file missing for {lang}: {fixture_path}"
)
# Read the fixture content # Read the fixture content
with open(fixture_path, "r", encoding="utf-8") as f: with open(fixture_path, "r", encoding="utf-8") as f: