mypy lint

This commit is contained in:
sneakers-the-rat 2025-03-06 19:35:53 -08:00
parent 1a58af44df
commit 15eb6782dc
No known key found for this signature in database
GPG Key ID: 6DCB96EF1E4D232D
1 changed files with 1 additions and 1 deletions

View File

@ -717,7 +717,7 @@ def _get_multidict_value(
field: ModelField,
values: Mapping[str, Any],
alias: Union[str, None] = None,
return_default=True,
return_default: bool = True,
) -> Any:
alias = alias or field.alias
if is_sequence_field(field) and isinstance(values, (ImmutableMultiDict, Headers)):