refactor: Remove redundant subprocess import in ring_bell method

This commit is contained in:
Paul Gauthier (aider) 2025-03-06 12:02:00 -08:00
parent e2117fd8a9
commit 56ba7ef411

View file

@ -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}")