From 01592afac3ae774923673a1b8bc2873e05f04c6d Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 8 May 2025 15:58:04 -0700 Subject: [PATCH] fix: Remove unused variables in Spinner --- aider/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/utils.py b/aider/utils.py index b8b1e7b15..eb99d6e3b 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -286,10 +286,10 @@ class Spinner: # If unicode is supported, swap the ASCII chars for nicer glyphs. if self._supports_unicode(): - scan_char, tail_char, trail_char = "≡", "=", "─" + scan_char, _, trail_char = "≡", "=", "─" frames = [f.replace("#", scan_char).replace("-", trail_char) for f in ascii_frames] else: - scan_char, tail_char, trail_char = "#", "=", "-" + scan_char, _, _ = "#", "=", "-" frames = ascii_frames # Bounce the scanner back and forth.