(message: str = "This process is not available through the canonical process-run contract.")
| 223 | |
| 224 | |
| 225 | def _unsupported_process(message: str = "This process is not available through the canonical process-run contract.") -> ModlyCliError: |
| 226 | return ModlyCliError(message, code="UNSUPPORTED_PROCESS") |
| 227 | |
| 228 | |
| 229 | def _request_supported_contract(method: str, url: str, *, timeout: float, data: bytes | None = None, headers: dict[str, str] | None = None) -> Any: |
no test coverage detected