From c706663841e1b9567dc680871674af533c152fa2 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 8 May 2025 16:32:07 -0700 Subject: [PATCH] fix: Ensure spinner ends on stop --- aider/waiting.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/waiting.py b/aider/waiting.py index c0b121e74..8068551bb 100644 --- a/aider/waiting.py +++ b/aider/waiting.py @@ -44,6 +44,7 @@ class WaitingSpinner: self._stop_event.set() if self._thread.is_alive(): self._thread.join(timeout=0.1) + self.spinner.end() # Allow use as a context-manager def __enter__(self):