We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dbcd0d commit 7f13497Copy full SHA for 7f13497
packages/smithy-core/src/smithy_core/retries.py
@@ -247,9 +247,7 @@ def refresh_retry_token_for_retry(
247
retry_delay = self.backoff_strategy.compute_next_backoff_delay(retry_count)
248
return SimpleRetryToken(retry_count=retry_count, retry_delay=retry_delay)
249
else:
250
- raise SmithyRetryException(
251
- f"Error is not retryable: {error_info}"
252
- )
+ raise SmithyRetryException(f"Error is not retryable: {error_info}")
253
254
def record_success(self, *, token: retries_interface.RetryToken) -> None:
255
"""Not used by this retry strategy."""
0 commit comments