We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3424e3d commit dd2af5fCopy full SHA for dd2af5f
1 file changed
src/sumo/wrapper/_retry_strategy.py
@@ -19,8 +19,12 @@ def _log_retry_info(retry_state):
19
def _is_retryable_exception(exception):
20
return isinstance(
21
exception,
22
- (httpx.TimeoutException, httpx.NetworkError,
23
- httpx.ProtocolError, httpx.ProxyError),
+ (
+ httpx.TimeoutException,
24
+ httpx.NetworkError,
25
+ httpx.ProtocolError,
26
+ httpx.ProxyError,
27
+ ),
28
)
29
30
0 commit comments