(self)
| 701 | |
| 702 | class attach_debugger: |
| 703 | def GET(self): |
| 704 | python_version = "{}.{}.{}".format(*sys.version_info) |
| 705 | return render_template("admin/attach_debugger", python_version) |
| 706 | |
| 707 | def POST(self): |
| 708 | import debugpy # noqa: T100 |
no test coverage detected