From 30d050483550cb44d8a41126af8339614d51c98b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 12:13:41 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20format?= =?UTF-8?q?=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi/applications.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fastapi/applications.py b/fastapi/applications.py index 1a4a65660..709cf5bb9 100644 --- a/fastapi/applications.py +++ b/fastapi/applications.py @@ -4547,7 +4547,6 @@ class FastAPI(Starlette): """ ), ], - *extra_exc_classes_or_status_codes: Annotated[ Union[int, Type[Exception]], Doc( @@ -4588,11 +4587,11 @@ class FastAPI(Starlette): ) ``` """ + def decorator(func: DecoratedCallable) -> DecoratedCallable: self.add_exception_handler(exc_class_or_status_code, func) for extra_exc_class_or_status_code in extra_exc_classes_or_status_codes: self.add_exception_handler(extra_exc_class_or_status_code, func) return func - return decorator