suhasg commited on
Commit
61ae9bd
·
1 Parent(s): 9603aa4

changes made in the make_api

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -86,6 +86,7 @@ def condition_split(query):
86
  start_index = resp.find("{")
87
  end_index = resp.rfind("}")
88
  resp = resp.replace("'", '"')
 
89
  json_data_string = resp[start_index:end_index + 1]
90
  json_data = json.loads(json_data_string)
91
  return json_data
 
86
  start_index = resp.find("{")
87
  end_index = resp.rfind("}")
88
  resp = resp.replace("'", '"')
89
+ print(resp)
90
  json_data_string = resp[start_index:end_index + 1]
91
  json_data = json.loads(json_data_string)
92
  return json_data