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),
)
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

4
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,
},
}

Loading…
Cancel
Save