Skip to content

Commit 7f13497

Browse files
committed
Lint fixes
1 parent 2dbcd0d commit 7f13497

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/smithy-core/src/smithy_core/retries.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,7 @@ def refresh_retry_token_for_retry(
247247
retry_delay = self.backoff_strategy.compute_next_backoff_delay(retry_count)
248248
return SimpleRetryToken(retry_count=retry_count, retry_delay=retry_delay)
249249
else:
250-
raise SmithyRetryException(
251-
f"Error is not retryable: {error_info}"
252-
)
250+
raise SmithyRetryException(f"Error is not retryable: {error_info}")
253251

254252
def record_success(self, *, token: retries_interface.RetryToken) -> None:
255253
"""Not used by this retry strategy."""

0 commit comments

Comments
 (0)