diff --git a/aider/utils.py b/aider/utils.py index eb99d6e3b..aff5cef86 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -278,18 +278,16 @@ class Spinner: [-----#=] [----#=-] [---#=--] -[---#=--] -[---#=--] [--#=---] [-#=----] """.strip().splitlines() # If unicode is supported, swap the ASCII chars for nicer glyphs. if self._supports_unicode(): - scan_char, _, trail_char = "≡", "=", "─" + scan_char, trail_char = "≡", "─" frames = [f.replace("#", scan_char).replace("-", trail_char) for f in ascii_frames] else: - scan_char, _, _ = "#", "=", "-" + scan_char, _ = "#", "-" frames = ascii_frames # Bounce the scanner back and forth.