Browse Source

Fix support for pydantic v1

pull/12502/head
Maxim Claeys 6 months ago
parent
commit
b5032f39a0
  1. 2
      fastapi/dependencies/utils.py

2
fastapi/dependencies/utils.py

@ -722,7 +722,7 @@ def _get_multidict_value(
and value == "" and value == ""
): ):
# Empty strings in a form can be a representation of None values # 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 None is an accepted value for this field, use that
if error is None: if error is None:
value = None value = None

Loading…
Cancel
Save