pass
# get the secrets ready
-with open(path.join(app.root_path, "..", "secrets.json"), "r") as f:
+with open(path.join(app.root_path, "..", "secrets.json"), "r", encoding="utf-8") as f:
users = json.loads(f.read())
users = {k: generate_password_hash(v) for (k, v) in users.items()}
# get the static data ready
-with open(path.join(app.root_path, "static", "static.json"), "r") as f:
+with open(path.join(app.root_path, "static", "static.json"), "r", encoding="utf-8") as f:
static_data = json.loads(f.read())
-with open(path.join(app.root_path, "static", "info.json"), "r") as f:
+with open(path.join(app.root_path, "static", "info.json"), "r", encoding="utf-8") as f:
static_info = json.loads(f.read())