JunJiaGuo commited on
Commit
80b9c95
·
verified ·
1 Parent(s): 70030b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -95,7 +95,7 @@ def load_id_answer_mapping():
95
  encoded_mapping = os.getenv("ID_ANSWER_MAPPING") # 读取 Secret
96
  if not encoded_mapping:
97
  raise ValueError("ID_ANSWER_MAPPING secret not found!")
98
-
99
  decoded_mapping = base64.b64decode(encoded_mapping).decode("utf-8")
100
  return json.loads(decoded_mapping)
101
 
 
95
  encoded_mapping = os.getenv("ID_ANSWER_MAPPING") # 读取 Secret
96
  if not encoded_mapping:
97
  raise ValueError("ID_ANSWER_MAPPING secret not found!")
98
+ print(encoded_mapping)
99
  decoded_mapping = base64.b64decode(encoded_mapping).decode("utf-8")
100
  return json.loads(decoded_mapping)
101