Skip to content

Commit

Permalink
style: fix whitespace and line spacing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Nov 1, 2024
1 parent 9363903 commit d67d319
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aider/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ def run_install(cmd):

return False, output


class Spinner:
spinner_chars = itertools.cycle(["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"])

Expand All @@ -279,7 +280,7 @@ def __init__(self, text):
def step(self):
if not self.is_tty:
return

current_time = time.time()
if not self.visible and current_time - self.start_time >= 0.5:
self.visible = True
Expand Down

0 comments on commit d67d319

Please sign in to comment.