ff2c474c55
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.
12 lines
284 B
Python
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: ...
|