File size: 173 Bytes
07bb79d |
1 2 3 4 5 6 |
import yaml
def load_config(config_path: str) -> dict:
"""Load configuration from a YAML file."""
with open(config_path, 'r') as f:
return yaml.safe_load(f) |
07bb79d |
1 2 3 4 5 6 |
import yaml
def load_config(config_path: str) -> dict:
"""Load configuration from a YAML file."""
with open(config_path, 'r') as f:
return yaml.safe_load(f) |