From 5c504c7a2245741a13b176c9f07bd6389517e323 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20T=C5=AFma?= Date: Tue, 5 May 2026 19:08:01 +0200 Subject: [PATCH] Apply suggested fix to examples/simple.py from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- examples/simple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple.py b/examples/simple.py index 10853d6..18b2d39 100644 --- a/examples/simple.py +++ b/examples/simple.py @@ -477,7 +477,7 @@ def not_found(req, *_): "", "

404 - Page Not Found

", get_crumbnav(req), - f"

Your reqeuest {req.uri} was not found.

", + f"

Your request {req.uri} was not found.

", ) + get_footer() response = Response(status_code=state.HTTP_NOT_FOUND)