Handle requests with a page containing problematic links.
(_scope: dict[str, Any], _receive: Receive, send: Send)
| 301 | |
| 302 | |
| 303 | async def problematic_links_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
| 304 | """Handle requests with a page containing problematic links.""" |
| 305 | await send_html_response( |
| 306 | send, |
| 307 | PROBLEMATIC_LINKS, |
| 308 | ) |
| 309 | |
| 310 | |
| 311 | async def non_href_links_endpoint(_scope: dict[str, Any], _receive: Receive, send: Send) -> None: |
nothing calls this directly
no test coverage detected