mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
style: Apply linter formatting to io.py
This commit is contained in:
parent
49b33ec85e
commit
11bf7defea
1 changed files with 6 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
import base64
|
||||
import itertools
|
||||
import os
|
||||
import time
|
||||
import itertools
|
||||
from collections import defaultdict
|
||||
from datetime import datetime
|
||||
from pathlib import Path
|
||||
|
@ -428,7 +428,11 @@ class InputOutput:
|
|||
|
||||
def step(self):
|
||||
elapsed = time.time() - self.start_time
|
||||
print(f"{self.text} {next(self.io.spinner_chars)} ({elapsed:.1f}s)", end="\r", flush=True)
|
||||
print(
|
||||
f"{self.text} {next(self.io.spinner_chars)} ({elapsed:.1f}s)",
|
||||
end="\r",
|
||||
flush=True,
|
||||
)
|
||||
|
||||
def end(self):
|
||||
elapsed = time.time() - self.start_time
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue