From 44df0185d00515e5455d097e2984a8d9bc6136c0 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Fri, 3 May 2024 21:21:19 -0400 Subject: [PATCH] Add annotations --- fastapi/applications.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fastapi/applications.py b/fastapi/applications.py index 4446cacfb..7fef5a35e 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -4515,6 +4515,7 @@ class FastAPI(Starlette): ```python import time + from typing import Awaitable, Callabe from fastapi import FastAPI, Request @@ -4522,7 +4523,7 @@ class FastAPI(Starlette): @app.middleware("http") - async def add_process_time_header(request: Request, call_next): + async def add_process_time_header(request: Request, call_next: Callable[[Request], Awaitable[Response]): start_time = time.time() response = await call_next(request) process_time = time.time() - start_time