From d6460459ee95d8c2298b029fa4b2dc266e80a0cc Mon Sep 17 00:00:00 2001 From: historia Date: Tue, 25 Aug 2026 01:52:43 -0400 Subject: fix: trailing space in build animation --- app/ui/taskview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/taskview.py b/app/ui/taskview.py index c0977ff..65237af 100644 --- a/app/ui/taskview.py +++ b/app/ui/taskview.py @@ -411,7 +411,7 @@ class TaskView: return "[ ]", "dim" if index == self.current: frame = _SPINNER[int(self._now() * 4) % len(_SPINNER)] - return f"[{frame} ]", "warn" + return f"[{frame}]", "warn" if self.results[index] == 0: return "[OK]", "ok" if self.results[index] is not None: -- cgit v1.2.3