File size: 182 Bytes
318db6e
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import yaml
from typing import Dict

def config_loader(config_path) -> Dict:
    with open(config_path) as f:
        config = yaml.load(f, Loader=yaml.FullLoader)
    return config