File size: 140 Bytes
593f0ea
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import json
import yaml


def load_config():
    with open('./config.yaml', 'r') as f:
        config = yaml.safe_load(f)

    return config