Revert "[validation] Allow `maybe_simple_value` to not have default key in complex value" (#7305)

This commit is contained in:
Jesse Hills 2024-08-18 20:27:03 +12:00 committed by GitHub
parent 75899162b3
commit 56aa58780d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1864,7 +1864,7 @@ def maybe_simple_value(*validators, **kwargs):
if value == SCHEMA_EXTRACT:
return (validator, key)
if isinstance(value, dict):
if isinstance(value, dict) and key in value:
return validator(value)
return validator({key: value})