You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per discussion we have decided to allow both, this is because we see value in the ease of using a float in seconds and the self documentation of using timedelta.
This makes the function call less verbose.
Both will work:
fetch(timeout=datetime.timedelta(seconds=1.5))
fetch(timeout=1.5)
The text was updated successfully, but these errors were encountered: