rairo commited on
Commit
0ad47a8
·
verified ·
1 Parent(s): 56ae42a

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -2
main.py CHANGED
@@ -33,8 +33,8 @@ def home():
33
  def bot():
34
  load_dotenv()
35
  #
36
- json_table = json.loads(request.json.get("json_table"))
37
- user_question = json.loads(request.json.get("user_question"))
38
  print(json_table)
39
  print(user_question)
40
  data = eval(json_table)
 
33
  def bot():
34
  load_dotenv()
35
  #
36
+ json_table = request.json.get("json_table")
37
+ user_question = request.json.get("user_question")
38
  print(json_table)
39
  print(user_question)
40
  data = eval(json_table)