economic_settings

This commit is contained in:
Justin 2023-06-12 18:13:38 +08:00 committed by GitHub
parent a58109d6a5
commit aefaa56fb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -266,6 +266,10 @@ def index():
general_settings = json.load(f)
f.close()
f = open('csv/economic_settings.json', 'r')
economic_settings = json.load(f)
f.close()
try:
f = open('csv/scheduler.json','r')
scheduler_settings = json.load(f)