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