From 0fa09ee64a570d854f96d4b8336a334fd9824119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 1 Nov 2025 17:51:58 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Remove=20unnecessary=20comment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/routing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fastapi/routing.py b/fastapi/routing.py index cd3a6e043..a8e12eb60 100644 --- a/fastapi/routing.py +++ b/fastapi/routing.py @@ -108,7 +108,6 @@ def request_response( scope["fastapi_inner_astack"] = request_stack async with AsyncExitStack() as function_stack: scope["fastapi_function_astack"] = function_stack - # Same as in Starlette response = await f(request) await response(scope, receive, send) # Continues customization