disk0dancer commited on
Commit
2c76ec9
·
verified ·
1 Parent(s): 09d7163

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def postproccess(responce):
14
  try:
15
  return ' '.join(x['entity_group'] for x in responce)
16
  except Exception as ex:
17
- print(responce.__dict__())
18
  print(f"Exception: {ex}")
19
  return f"Exception: {ex}"
20
 
 
14
  try:
15
  return ' '.join(x['entity_group'] for x in responce)
16
  except Exception as ex:
17
+ print(list(responce.items()))
18
  print(f"Exception: {ex}")
19
  return f"Exception: {ex}"
20