(path: Path, config: dict[str, Any])
| 48 | |
| 49 | |
| 50 | def _atomic_yaml_dump(path: Path, config: dict[str, Any]) -> None: |
| 51 | atomic_write_text( |
| 52 | path, |
| 53 | yaml.safe_dump(config, allow_unicode=True, sort_keys=True), |
| 54 | ) |
| 55 | |
| 56 | |
| 57 | def _load_global_config_unlocked() -> dict[str, Any]: |
no test coverage detected