style: Fix code formatting in test_editor.py

This commit is contained in:
Paul Gauthier (aider) 2025-02-24 09:47:24 -08:00
parent c7fa57fd14
commit 4560572ff2

View file

@ -95,10 +95,10 @@ def test_pipe_editor_with_fake_editor():
import tempfile
with tempfile.NamedTemporaryFile(mode="w", suffix=".py", delete=False) as f:
f.write('''import sys
f.write("""import sys
with open(sys.argv[0] + ".log", "w") as f:
f.write(" ".join(sys.argv[1:]))
''')
""")
script_path = f.name
try: