Skip to content

Commit fbc649b

Browse files
committed
style: fix ruff docstring blank lines in safe_executor
1 parent 0a698f5 commit fbc649b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/iwa/core/services/safe_executor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,7 @@ def _handle_execution_failure( # noqa: C901
320320
nonce race (GS026 with pre-assigned nonce). The caller uses this
321321
to choose between fast fixed delay and exponential backoff without
322322
re-classifying the error a second time.
323+
323324
"""
324325
classification = self._classify_error(error, allow_nonce_refresh=allow_nonce_refresh)
325326
is_fee_error = classification["is_fee_error"]
@@ -559,6 +560,7 @@ def _classify_error(self, error: Exception, allow_nonce_refresh: bool = True) ->
559560
560561
The returned dict guarantees mutual exclusivity:
561562
``is_parallel_nonce_race=True`` implies ``is_signature_error=False``.
563+
562564
"""
563565
err_text = str(error).lower()
564566
decoded = (self._decode_revert_reason(error) or "").lower()

0 commit comments

Comments
 (0)