5 lines
89 B
Python
5 lines
89 B
Python
import toml
|
|
|
|
with open('test.toml', 'r+') as config:
|
|
config_file = toml.load(config)
|