DmitrMakeev commited on
Commit
6552e5d
·
1 Parent(s): f7b2141

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def upload_file():
19
 
20
  # Записываем данные в файл JSON
21
  with open('output.json', 'w') as json_file:
22
- json_file.write(jsonify(json_data).get_data(as_text=True))
23
 
24
  return render_template('index.html', json_data=json_data)
25
 
 
19
 
20
  # Записываем данные в файл JSON
21
  with open('output.json', 'w') as json_file:
22
+ json.dump(json_data, json_file)
23
 
24
  return render_template('index.html', json_data=json_data)
25