Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ def get_json_file(json_docs):
|
|
54 |
jq_schema='.',
|
55 |
text_content=False
|
56 |
)
|
57 |
-
with open(temp_filepath,
|
58 |
s = f.write(json_docs.getvalue())
|
59 |
s = s.replace('\t','')
|
60 |
s = s.replace('\n','')
|
|
|
54 |
jq_schema='.',
|
55 |
text_content=False
|
56 |
)
|
57 |
+
with open(temp_filepath,"wb") as f:
|
58 |
s = f.write(json_docs.getvalue())
|
59 |
s = s.replace('\t','')
|
60 |
s = s.replace('\n','')
|