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

This commit is contained in:
pre-commit-ci[bot] 2023-11-04 05:37:44 +00:00
parent 1b111fb00e
commit 53b08f50d4
1 changed files with 3 additions and 1 deletions

View File

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