Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanMarten committed Dec 14, 2024
1 parent d40f4ab commit 9a3da98
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ class StatusTracker:
max_tokens_per_minute: int = 0
pbar: tqdm = field(default=None)
response_cost: float = 0
time_of_last_rate_limit_error: float = field(default=time.time() - SECONDS_TO_PAUSE_ON_RATE_LIMIT)
time_of_last_rate_limit_error: float = field(
default=time.time() - SECONDS_TO_PAUSE_ON_RATE_LIMIT
)

def __str__(self):
return (
Expand Down

0 comments on commit 9a3da98

Please sign in to comment.