style: Fix linting issues in test_main.py

This commit is contained in:
Paul Gauthier (aider) 2025-03-05 15:16:49 -08:00
parent dc9ff3a004
commit 3adb443ca5

View file

@ -783,7 +783,7 @@ class TestMain(TestCase):
git_config = git_dir / ".git" / "config" git_config = git_dir / ".git" / "config"
original_config = git_config.read_text() original_config = git_config.read_text()
with open(git_config, "a") as f: with open(git_config, "a") as f:
f.write(f'\n[include]\n path = {include_config}\n') f.write(f"\n[include]\n path = {include_config}\n")
# Verify the config is set up correctly # Verify the config is set up correctly
repo = git.Repo(git_dir) repo = git.Repo(git_dir)