From 4e689e20e9e809f35b625487da4aa89d17bc220f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 27 Nov 2024 17:32:22 -0800 Subject: [PATCH] style: add noqa comment to silence flake8 warning for FileWatcher import --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 69be7e9ab..b6d1617bc 100644 --- a/aider/io.py +++ b/aider/io.py @@ -25,7 +25,7 @@ from rich.style import Style as RichStyle from rich.text import Text from aider.mdstream import MarkdownStream -from aider.watch import FileWatcher +from aider.watch import FileWatcher # noqa: F401 from .dump import dump # noqa: F401 from .utils import is_image_file