(runtime_kind: str, message: str)
| 48 | |
| 49 | |
| 50 | def start_runtime_prepare(runtime_kind: str, message: str) -> Dict[str, Any]: |
| 51 | return _update_status( |
| 52 | runtime_kind, |
| 53 | state="running", |
| 54 | active=True, |
| 55 | message=message, |
| 56 | error="", |
| 57 | ) |
| 58 | |
| 59 | |
| 60 | def progress_runtime_prepare(runtime_kind: str, message: str) -> Dict[str, Any]: |
no test coverage detected