Browse Source

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

pull/4573/head
pre-commit-ci[bot] 1 year ago
parent
commit
53b08f50d4
  1. 4
      fastapi/dependencies/utils.py

4
fastapi/dependencies/utils.py

@ -239,7 +239,9 @@ def get_typed_signature(call: Callable[..., Any]) -> inspect.Signature:
typed_params = []
for param in signature.parameters.values():
param_name = param.name if param.name not in alias_dict else alias_dict[param.name]
param_name = (
param.name if param.name not in alias_dict else alias_dict[param.name]
)
created_param = inspect.Parameter(
name=param_name,
kind=param.kind,

Loading…
Cancel
Save