File size: 465 Bytes
c289d87 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | from __future__ import annotations
from pathlib import Path
from typing import Any, Dict
import yaml
def load_config(path: str | Path) -> Dict[str, Any]:
"""Load YAML config into a plain dictionary."""
config_path = Path(path)
with config_path.open("r", encoding="utf-8") as handle:
data = yaml.safe_load(handle) or {}
if not isinstance(data, dict):
raise ValueError(f"Config at {config_path} must be a mapping")
return data
|