(config: dict[str, Any])
| 86 | |
| 87 | |
| 88 | def _save_config(config: dict[str, Any]) -> None: |
| 89 | path = _config_path() |
| 90 | path.parent.mkdir(parents=True, exist_ok=True) |
| 91 | path.write_text(json.dumps(config, indent=2)) |
| 92 | |
| 93 | |
| 94 | def is_enabled() -> bool: |
no test coverage detected