Skip to content

Commit

Permalink
double api call waiting time
Browse files Browse the repository at this point in the history
  • Loading branch information
djbrown authored Jul 4, 2024
1 parent 6b445e4 commit 5313453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def get_text(url) -> str:
return response.text


def get_throttled(url, wait=5) -> str:
def get_throttled(url, wait=10) -> str:
time.sleep(wait)
return get_text(url)

Expand Down

0 comments on commit 5313453

Please sign in to comment.