Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -424,7 +424,8 @@ Required keys:
|
|
424 |
|
425 |
def format_json(inp):
|
426 |
print("FORMATTING:::")
|
427 |
-
inp=str(inp)
|
|
|
428 |
out_json = inp.split("{")[1].split("}",-1)[0]
|
429 |
out_json={out_json}
|
430 |
print(out_json)
|
|
|
424 |
|
425 |
def format_json(inp):
|
426 |
print("FORMATTING:::")
|
427 |
+
inp=str(inp).replace("\n","")
|
428 |
+
print(inp)
|
429 |
out_json = inp.split("{")[1].split("}",-1)[0]
|
430 |
out_json={out_json}
|
431 |
print(out_json)
|