doesn't fix the bug

This commit is contained in:
Justin 2022-10-06 16:36:37 +08:00 committed by GitHub
parent bbbdabeaae
commit 0b029545cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +0,0 @@
import json
try:
f = open('csv/last_updates.json', 'r')
last_updates = json.load(f)
f.close()
last_updates['stocks']['force'] = True
#last_updates['weather']['force'] = True
f = open('csv/last_updates.json', 'w')
json.dump(last_updates, f)
f.close()
except:
pass