Skip to content

Commit

Permalink
fix: set default timeout to 60s (#16)
Browse files Browse the repository at this point in the history
This aligns with the url_option timeout which is set to 60000
  • Loading branch information
eifinger authored Oct 5, 2023
1 parent 6591330 commit 7f3286a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pywaze/route_calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(
self,
region="EU",
client: httpx.AsyncClient | None = None,
timeout: int = 10,
timeout: int = 60,
):
self.region = region
self.client = client
Expand Down

0 comments on commit 7f3286a

Please sign in to comment.