Spaces:
Paused
Paused
File size: 173 Bytes
af3518b |
1 2 3 4 5 6 7 8 |
def read_config():
import yaml
with open("config.yaml", "r") as yamlfile:
config = yaml.load(yamlfile, Loader=yaml.FullLoader)
return config['config']
|