(name: str)
| 224 | |
| 225 | |
| 226 | def module_status(name: str) -> dict[str, Any]: |
| 227 | return {"name": name, "present": module_present(name)} |
| 228 | |
| 229 | |
| 230 | def tool_preflight(required: list[str], optional: list[str] | None = None) -> dict[str, Any]: |
nothing calls this directly
no test coverage detected