style: fix indentation in test_cmd_save_and_load_with_external_file

This commit is contained in:
Paul Gauthier (aider) 2024-10-29 12:54:05 -07:00
parent 8d6db81a40
commit 9e9c162a16

View file

@ -695,7 +695,7 @@ class TestCommands(TestCase):
Path(session_file).unlink() Path(session_file).unlink()
def test_cmd_save_and_load_with_external_file(self): def test_cmd_save_and_load_with_external_file(self):
with tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file: with tempfile.NamedTemporaryFile(mode="w", delete=False) as external_file:
external_file.write("External file content") external_file.write("External file content")
external_file_path = external_file.name external_file_path = external_file.name