From 95d92579e33810747dbd3ada5185998cee782f4e Mon Sep 17 00:00:00 2001 From: Purushot14 Date: Thu, 13 Mar 2025 00:26:17 +0530 Subject: [PATCH] python 3.9 not supported | on type check so handle that --- docs_src/custom_api_router/tutorial001.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs_src/custom_api_router/tutorial001.py b/docs_src/custom_api_router/tutorial001.py index ea8cc9e05..8ad872b20 100644 --- a/docs_src/custom_api_router/tutorial001.py +++ b/docs_src/custom_api_router/tutorial001.py @@ -92,8 +92,8 @@ class AppRouter(APIRouter): self, path: str, endpoint: Callable[[Request], Union[Awaitable[Response], Response]], - methods: list[str] | None = None, - name: str | None = None, + methods: Union[List[str], None] = None, + name: Union[str, None] = None, include_in_schema: bool = True, ) -> None: name = f"{self.request_name_prefix}.{name}"