Spaces:
Sleeping
Sleeping
import json | |
def load_config(): | |
with open('config.json', 'r') as file: | |
config = json.load(file) | |
return config | |
import json | |
def load_config(): | |
with open('config.json', 'r') as file: | |
config = json.load(file) | |
return config | |