From f7aadd24b9b7c27b0b88765e90dd3ec120cc62e6 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 23 Feb 2023 16:09:18 +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/utils.py | 9 ++++----- tests/test_dependency_generic_class.py | 4 ++-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/fastapi/utils.py b/fastapi/utils.py index 1bd2de317..721331131 100644 --- a/fastapi/utils.py +++ b/fastapi/utils.py @@ -282,16 +282,16 @@ def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature: annotation=get_typed_annotation(param.annotation, globalns, typevars), ) for param in signature.parameters.values() - if param.name != 'self' + if param.name != "self" ] typed_signature = inspect.Signature(typed_params) return typed_signature def get_typed_annotation( - annotation: Any, - globalns: Dict[str, Any], - typevars: Optional[Dict[str, type]] = None, + annotation: Any, + globalns: Dict[str, Any], + typevars: Optional[Dict[str, type]] = None, ) -> Any: if isinstance(annotation, str): annotation = ForwardRef(annotation) @@ -798,4 +798,3 @@ def get_body_field(*, dependant: Dependant, name: str) -> Optional[ModelField]: ) check_file_field(final_field) return final_field - diff --git a/tests/test_dependency_generic_class.py b/tests/test_dependency_generic_class.py index 95b81eb84..3eeb8291e 100644 --- a/tests/test_dependency_generic_class.py +++ b/tests/test_dependency_generic_class.py @@ -19,7 +19,7 @@ class SecondGenericType(Generic[T, C]): simple: T, lst: List[T], dct: Dict[T, C], - custom_class: FirstGenericType[T] = Depends() + custom_class: FirstGenericType[T] = Depends(), ): self.simple = simple self.lst = lst @@ -38,7 +38,7 @@ def depend_generic_type(obj: SecondGenericType[str, int] = Depends()): "dct": obj.dct, "custom_class": { "simple": obj.custom_class.simple, - "lst": obj.custom_class.lst + "lst": obj.custom_class.lst, }, }