mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 18:25:00 +00:00
Replaced the simple ASCII spinner characters with a more visually appealing set of Unicode braille characters.
This commit is contained in:
parent
cbf0fd881c
commit
af8dff8714
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ def pip_install(args):
|
||||||
try:
|
try:
|
||||||
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True, bufsize=1, universal_newlines=True)
|
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True, bufsize=1, universal_newlines=True)
|
||||||
output = []
|
output = []
|
||||||
spinner = itertools.cycle(['-', '/', '|', '\\'])
|
spinner = itertools.cycle(['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'])
|
||||||
|
|
||||||
for line in process.stdout:
|
for line in process.stdout:
|
||||||
output.append(line)
|
output.append(line)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue