Omnibus commited on
Commit
35ea77d
·
verified ·
1 Parent(s): f483027

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -8
app.py CHANGED
@@ -429,17 +429,13 @@ def format_json(inp):
429
  print(inp)
430
  print("###########")
431
  print("###########")
432
- new_str=""
433
- for i,line in enumerate(inp):
434
- line = line.strip()
435
- print(line)
436
- new_str+=line.strip("\n")
437
  print("###########")
438
  print("###########")
439
 
440
- out_json = new_str.split("{")[1].split("}",-1)[0]
441
- print(out_json)
442
- return {out_json}
443
 
444
 
445
 
 
429
  print(inp)
430
  print("###########")
431
  print("###########")
432
+ inp = inp.strip("<\s>")
433
+ out_json=eval(inp)
434
+ print(out_json)
 
 
435
  print("###########")
436
  print("###########")
437
 
438
+ return out_json
 
 
439
 
440
 
441