han-byeol commited on
Commit
f4e83aa
1 Parent(s): 45e36d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -52,7 +52,7 @@ def get_json_file(json_docs):
52
  temp_filepath = os.path.join(temp_dir.name, json_docs.name)
53
  with open(temp_filepath, "wb") as f:
54
  f.write(json_docs.getvalue())
55
- json_loader = JSONLoader(temp_filepath, jq_schema={})
56
  users_text = json_loader.load()
57
  return users_text
58
 
 
52
  temp_filepath = os.path.join(temp_dir.name, json_docs.name)
53
  with open(temp_filepath, "wb") as f:
54
  f.write(json_docs.getvalue())
55
+ json_loader = JSONLoader(temp_filepath, jq_schema=None)
56
  users_text = json_loader.load()
57
  return users_text
58