Skip to content

Commit

Permalink
fix claude errors... (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
davanstrien authored Dec 20, 2024
1 parent d3852bc commit f7f0e8e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/actions/update-progress/src/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,10 @@ def get_dataset_for_language(language_code):
@stamina.retry(
on=(httpx.HTTPStatusError, ArgillaAPIError),
attempts=5,
wait_initial=10,
wait_exponential_multiplier=2,
wait_initial=15,
)
def get_dataset_progress(language_dataset_name):
time.sleep(10)
time.sleep(2)
dataset = client.datasets(language_dataset_name)
return {
"language_dataset_name": language_dataset_name,
Expand Down

0 comments on commit f7f0e8e

Please sign in to comment.