Files
cleveragents-core/typings/botocore/exceptions.pyi
T
HAL9000 ff2c474c55 fix(lint): remove duplicate ImportError clauses and reformat files
Remove duplicate except ImportError blocks in cloud_resources_steps.py
(B025 violations in step_sandbox_create, step_sandbox_commit,
step_sandbox_rollback). Apply ruff format to 5 files flagged by the
format check.
2026-06-02 07:37:13 -04:00

12 lines
284 B
Python

"""Minimal type stub for botocore.exceptions."""
class BotoCoreError(Exception): ...
class ClientError(BotoCoreError):
response: dict[str, object]
operation_name: str
def __init__(
self, error_response: dict[str, object], operation_name: str
) -> None: ...