(name: str)
| 219 | |
| 220 | |
| 221 | def executable_status(name: str) -> dict[str, Any]: |
| 222 | resolved = command_path(name) |
| 223 | return {"name": name, "present": resolved is not None, "path": resolved} |
| 224 | |
| 225 | |
| 226 | def module_status(name: str) -> dict[str, Any]: |
no test coverage detected