(signal_received, frame)
| 4 | from flask import Flask, render_template |
| 5 | |
| 6 | def handler(signal_received, frame): |
| 7 | # SIGINT or ctrl-C detected, exit without error |
| 8 | exit(0) |
| 9 | |
| 10 | # pylint: disable=C0103 |
| 11 | app = Flask(__name__) |
nothing calls this directly
no outgoing calls
no test coverage detected