Spaces:
Sleeping
Sleeping
Disable debug mode
Browse files
app.py
CHANGED
|
@@ -30,5 +30,5 @@ def index():
|
|
| 30 |
return jsonify({'error': 'Invalid action'}), 400
|
| 31 |
return render_template('index.html')
|
| 32 |
|
| 33 |
-
if __name__ ==
|
| 34 |
-
app.run(debug=
|
|
|
|
| 30 |
return jsonify({'error': 'Invalid action'}), 400
|
| 31 |
return render_template('index.html')
|
| 32 |
|
| 33 |
+
if __name__ == "__main__":
|
| 34 |
+
app.run(debug=False, use_reloader=False)
|