table_test / config_loader.py
Kushalguptaiitb's picture
Upload 5 files
07bb79d verified
raw
history blame contribute delete
173 Bytes
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)