From f412d36f62dafae61ea588ec0d1e29a4c16cd97f Mon Sep 17 00:00:00 2001 From: "[object Object]" Date: Sun, 26 Jun 2022 11:06:50 -0700 Subject: [PATCH] Update fastapi/dependencies/utils.py Co-authored-by: Yurii Karabas <1998uriyyo@gmail.com> --- fastapi/dependencies/utils.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/fastapi/dependencies/utils.py b/fastapi/dependencies/utils.py index 948f5800d..19ae9ad40 100644 --- a/fastapi/dependencies/utils.py +++ b/fastapi/dependencies/utils.py @@ -245,12 +245,7 @@ def is_scalar_sequence_field(field: ModelField) -> bool: def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature: signature = inspect.signature(call) - nsobj = call - while hasattr(nsobj, "__wrapped__"): - # The __wrapped__ attribute is set by decorators, e.g. functools.wraps. - # This while loop allows rereferencing forward references on decorated - # methods. - nsobj = nsobj.__wrapped__ # type: ignore + nsobj = inspect.unwrap(call) globalns = getattr(nsobj, "__globals__", {}) typed_params = [ inspect.Parameter(