app.route('/<int:id>/edit/', methods=('GET', 'POST'))
| 1 | import sqlite3 |
| 2 | from flask import Flask, render_template, request, url_for, flash, redirect, abort |
| 3 | |
| 4 | app = Flask(__name__) |
nothing calls this directly
no outgoing calls
no test coverage detected