mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-04 03:35: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 unicode is supported, swap the ASCII chars for nicer glyphs.
|
||||||
if self._supports_unicode():
|
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]
|
frames = [f.replace("#", scan_char).replace("-", trail_char) for f in ascii_frames]
|
||||||
else:
|
else:
|
||||||
scan_char, tail_char, trail_char = "#", "=", "-"
|
scan_char, _, _ = "#", "=", "-"
|
||||||
frames = ascii_frames
|
frames = ascii_frames
|
||||||
|
|
||||||
# Bounce the scanner back and forth.
|
# Bounce the scanner back and forth.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue