How do I fix this “TypeError: string indices must be integers” in my flask login/signup app?

Solution 1
import json

with open(os.path.join(path, "users.json"), "r") as json_file:
    data = json.load(json_file)
Solution 2
import json
data = json.loads(open("users.json").read())