Spaces:
Sleeping
Sleeping
File size: 115 Bytes
fbf7e95 |
1 2 3 4 5 6 7 |
import yaml
def load_config(filename):
with open(filename, 'r') as file:
return yaml.safe_load(file)
|