Hello!
So, I’m wondering, why doesn’t data store into some x.json file. Basically, I’m making my Discord bot with python and if I test it on PC locally, it works fine and data appears in x.json file, but on glitch, it doesn’t. I don’t get any errors either …
Example:
with open("users.json", "w") as f:
json.dump(users, f)
Is there any way to fix this?
Thank you!