mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
style: fix whitespace and line spacing issues
This commit is contained in:
parent
93639039d4
commit
d67d319b31
1 changed files with 2 additions and 1 deletions
|
@ -266,6 +266,7 @@ def run_install(cmd):
|
||||||
|
|
||||||
return False, output
|
return False, output
|
||||||
|
|
||||||
|
|
||||||
class Spinner:
|
class Spinner:
|
||||||
spinner_chars = itertools.cycle(["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"])
|
spinner_chars = itertools.cycle(["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"])
|
||||||
|
|
||||||
|
@ -279,7 +280,7 @@ class Spinner:
|
||||||
def step(self):
|
def step(self):
|
||||||
if not self.is_tty:
|
if not self.is_tty:
|
||||||
return
|
return
|
||||||
|
|
||||||
current_time = time.time()
|
current_time = time.time()
|
||||||
if not self.visible and current_time - self.start_time >= 0.5:
|
if not self.visible and current_time - self.start_time >= 0.5:
|
||||||
self.visible = True
|
self.visible = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue