From e9ce04ffe91ddd8a39b46f54e1e2dad708789041 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 1 Dec 2024 10:04:40 -0800 Subject: [PATCH] style: Fix linting issues in test_watch.py --- tests/basic/test_watch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_watch.py b/tests/basic/test_watch.py index 6ea9f0b12..f8d8ab8b4 100644 --- a/tests/basic/test_watch.py +++ b/tests/basic/test_watch.py @@ -1,11 +1,12 @@ from pathlib import Path + from aider.watch import FileWatcher def test_ai_comment_pattern(): # Read fixture files fixtures_dir = Path(__file__).parent.parent / "fixtures" - + with open(fixtures_dir / "watch.py") as f: py_content = f.read() with open(fixtures_dir / "watch.js") as f: