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

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 = eval(input)
 
68
  #eval_result = ast.literal_eval(input)
69
  write_db(eval_result)
70
 
 
64
 
65
 
66
  def text_dict(input):
67
+ print(input)
68
+ eval_result = input
69
  #eval_result = ast.literal_eval(input)
70
  write_db(eval_result)
71