merve HF Staff commited on
Commit
c4187a8
·
1 Parent(s): ceceecb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -64,7 +64,8 @@ def write_db(data_dict):
64
 
65
 
66
  def text_dict(input):
67
- eval_result = ast.literal_eval(input)
 
68
  write_db(eval_result)
69
 
70
  return (
 
64
 
65
 
66
  def text_dict(input):
67
+ eval_result = eval(input)
68
+ #eval_result = ast.literal_eval(input)
69
  write_db(eval_result)
70
 
71
  return (