From 61f468e759bb0ba0ef7a32bb9d6f9c38b9e22f9a Mon Sep 17 00:00:00 2001 From: Kwame Wright Date: Fri, 9 May 2025 18:13:09 -0700 Subject: [PATCH] Update typing import --- docs_src/dependencies/tutorial012_an_py39.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_src/dependencies/tutorial012_an_py39.py b/docs_src/dependencies/tutorial012_an_py39.py index 7541e6bf4..63e93132d 100644 --- a/docs_src/dependencies/tutorial012_an_py39.py +++ b/docs_src/dependencies/tutorial012_an_py39.py @@ -1,5 +1,5 @@ from fastapi import Depends, FastAPI, Header, HTTPException -from typing_extensions import Annotated +from typing import Annotated async def verify_token(x_token: Annotated[str, Header()]):