(path: Path)
| 184 | |
| 185 | |
| 186 | def load_json(path: Path) -> Dict[str, Any]: |
| 187 | if not path.exists(): |
| 188 | return {} |
| 189 | payload = json.loads(path.read_text(encoding="utf-8")) |
| 190 | return payload if isinstance(payload, dict) else {} |
| 191 | |
| 192 | |
| 193 | def parse_string_list(raw_value: Any) -> List[str]: |
no outgoing calls
no test coverage detected