PoeTrade/src/config.py

7 lines
109 B
Python

import yaml
def read_config(filename):
with open(filename, 'r') as f:
return yaml.safe_load(f)