File size: 181 Bytes
cc69848
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import toml


def read_preset(preset):
    try:
        return toml.load(preset)
    except Exception as e:
        print("Error: cannot read preset file. ", e)
        return None