(runtime_kind: str, message: str = "")
| 87 | |
| 88 | |
| 89 | def reset_runtime_prepare(runtime_kind: str, message: str = "") -> Dict[str, Any]: |
| 90 | return _update_status( |
| 91 | runtime_kind, |
| 92 | state="idle", |
| 93 | active=False, |
| 94 | message=message, |
| 95 | error="", |
| 96 | ) |
| 97 | |
| 98 | |
| 99 | def get_runtime_status(runtime_kind: str) -> Dict[str, Any]: |
nothing calls this directly
no test coverage detected