Browse Source

🎨 [pre-commit.ci] Auto format from pre-commit.com hooks

pull/6038/head
pre-commit-ci[bot] 2 years ago
parent
commit
f7aadd24b9
  1. 9
      fastapi/utils.py
  2. 4
      tests/test_dependency_generic_class.py

9
fastapi/utils.py

@ -282,16 +282,16 @@ def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature:
annotation=get_typed_annotation(param.annotation, globalns, typevars), annotation=get_typed_annotation(param.annotation, globalns, typevars),
) )
for param in signature.parameters.values() for param in signature.parameters.values()
if param.name != 'self' if param.name != "self"
] ]
typed_signature = inspect.Signature(typed_params) typed_signature = inspect.Signature(typed_params)
return typed_signature return typed_signature
def get_typed_annotation( def get_typed_annotation(
annotation: Any, annotation: Any,
globalns: Dict[str, Any], globalns: Dict[str, Any],
typevars: Optional[Dict[str, type]] = None, typevars: Optional[Dict[str, type]] = None,
) -> Any: ) -> Any:
if isinstance(annotation, str): if isinstance(annotation, str):
annotation = ForwardRef(annotation) annotation = ForwardRef(annotation)
@ -798,4 +798,3 @@ def get_body_field(*, dependant: Dependant, name: str) -> Optional[ModelField]:
) )
check_file_field(final_field) check_file_field(final_field)
return final_field return final_field

4
tests/test_dependency_generic_class.py

@ -19,7 +19,7 @@ class SecondGenericType(Generic[T, C]):
simple: T, simple: T,
lst: List[T], lst: List[T],
dct: Dict[T, C], dct: Dict[T, C],
custom_class: FirstGenericType[T] = Depends() custom_class: FirstGenericType[T] = Depends(),
): ):
self.simple = simple self.simple = simple
self.lst = lst self.lst = lst
@ -38,7 +38,7 @@ def depend_generic_type(obj: SecondGenericType[str, int] = Depends()):
"dct": obj.dct, "dct": obj.dct,
"custom_class": { "custom_class": {
"simple": obj.custom_class.simple, "simple": obj.custom_class.simple,
"lst": obj.custom_class.lst "lst": obj.custom_class.lst,
}, },
} }

Loading…
Cancel
Save