()
| 76 | |
| 77 | |
| 78 | def _load_config() -> dict[str, Any]: |
| 79 | path = _config_path() |
| 80 | if path.exists(): |
| 81 | try: |
| 82 | return json.loads(path.read_text()) |
| 83 | except Exception: |
| 84 | pass |
| 85 | return {} |
| 86 | |
| 87 | |
| 88 | def _save_config(config: dict[str, Any]) -> None: |
no test coverage detected