906e061
1
2
3
4
5
6
7
import munch import toml def get_config(filepath: str = 'configs/default.toml'): return munch.munchify( toml.load(filepath) )