()
| 257 | |
| 258 | def load_default_checkfiles() -> List[Dict[str, Any]]: |
| 259 | return load_checkfiles(str(DEFAULT_CHECKFILES_DIR)) |
| 260 | |
| 261 | |
| 262 | def classify_checkfile_role(checkfile: Dict[str, Any]) -> str: |
| 263 | explicit_role = str(checkfile.get("trigger_role") or "").strip() |
nothing calls this directly
no test coverage detected