mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
fix: Remove unused variables in Spinner
This commit is contained in:
parent
3a5a46253d
commit
01592afac3
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue