diff --git a/fastapi/dependencies/utils.py b/fastapi/dependencies/utils.py index 018f3ded8..c5105efad 100644 --- a/fastapi/dependencies/utils.py +++ b/fastapi/dependencies/utils.py @@ -722,7 +722,7 @@ def _get_multidict_value( and value == "" ): # Empty strings in a form can be a representation of None values - _, error = field.validate(value=None) + _, error = field.validate(None, {}, loc=()) # If None is an accepted value for this field, use that if error is None: value = None