From 56ba7ef4116dd8e938643f4ecaf517f42cbf08bb Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 6 Mar 2025 12:02:00 -0800 Subject: [PATCH] refactor: Remove redundant subprocess import in ring_bell method --- aider/io.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/aider/io.py b/aider/io.py index 3496fa1b7..166bf6ee6 100644 --- a/aider/io.py +++ b/aider/io.py @@ -960,8 +960,6 @@ class InputOutput: if self.bell_on_next_input and self.notifications: if self.notifications_command: try: - import subprocess - subprocess.run(self.notifications_command, shell=True) except Exception as e: self.tool_warning(f"Failed to run notifications command: {e}")