(index)
| 18 | return redirect(url_for('index')) |
| 19 | @app.route('/remove/<int:index>', methods=['GET']) |
| 20 | def remove(index): |
| 21 | del todos[index] |
| 22 | return redirect(url_for('index')) |
| 23 | |
| 24 | @app.route('/edit/<int:index>', methods=['GET', 'POST']) |
| 25 | def edit(index): |
nothing calls this directly
no outgoing calls
no test coverage detected