From 54965fdf2ec4d9f69c2cb61d7b6abf092caf8b4d Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Mon, 24 Feb 2025 09:46:33 -0800 Subject: [PATCH] style: Fix linter warnings in test_editor.py --- tests/basic/test_editor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_editor.py b/tests/basic/test_editor.py index 1a29cf449..c66260328 100644 --- a/tests/basic/test_editor.py +++ b/tests/basic/test_editor.py @@ -104,7 +104,7 @@ def test_pipe_editor_with_shell_script(): try: # Use the script as editor and verify it's called with .md file pipe_editor("test content", suffix="md", editor=script_path) - + # Read the log file to see what arguments were passed with open(f"{script_path}.log") as f: called_args = f.read().strip()