update to make work with latest master changes

Signed-off-by: merlinz01 <158784988+merlinz01@users.noreply.github.com>
This commit is contained in:
merlinz01 2024-10-12 21:59:00 -04:00
parent 96d2ca4426
commit af05854e91
1 changed files with 1 additions and 1 deletions

View File

@ -842,7 +842,7 @@ def request_params_to_args(
if alias == field.name:
alias = alias.replace("_", "-")
value = _get_multidict_value(field, received_params, alias=alias)
if value is not None:
if value is not Undefined and value is not None:
params_to_process[get_validation_alias(field)] = value
processed_keys.add(alias or get_validation_alias(field))