From 58219c07216653514e4bfffe0a7141a962213194 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 16 Dec 2022 20:24:46 +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/dependencies/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastapi/dependencies/utils.py b/fastapi/dependencies/utils.py index 548d7df26..cbc3a6d9a 100644 --- a/fastapi/dependencies/utils.py +++ b/fastapi/dependencies/utils.py @@ -252,10 +252,10 @@ def get_globalns(call: Callable[..., Any]) -> Dict[str, Any]: source_func = call elif isinstance(call, type): # If the callable is a class, its dependencies are declared on __init__ - source_func = getattr(call, "__init__") + source_func = call.__init__ else: # For callable instances of classes, the dependencies are declared on __call__ - source_func = getattr(call, "__call__") + source_func = call.__call__ return cast(Dict[str, Any], getattr(source_func, "__globals__", {}))