(request)
| 38 | |
| 39 | @exception_handler_app.route("/4", error_format="html") |
| 40 | def handler_4(request): |
| 41 | foo = bar # noqa -- F821 |
| 42 | return text(foo) |
| 43 | |
| 44 | @exception_handler_app.route("/5", error_format="html") |
| 45 | def handler_5(request): |
nothing calls this directly
no test coverage detected
searching dependent graphs…