8 lines
139 B
Python
8 lines
139 B
Python
# utils.py
|
|
|
|
import yaml
|
|
|
|
|
|
def load_config(config_path: str) -> dict:
|
|
with open(config_path, 'r') as f:
|
|
return yaml.safe_load(f) |