-
Notifications
You must be signed in to change notification settings - Fork 240
Open
Labels
Description
>>> import cerberus
>>> cerberus.__version__
'1.3.4'
>>> from cerberus.validator import Validator
>>> Validator().normalized({'f': '123'}, schema={'f': {'type': 'integer', 'coerce': int}})
{'f': 123}
>>> Validator().normalized({'f': '123'}, schema={'f': {'type': 'integer', 'coerce': int, 'rename': 'g'}})
{'g': '123'}I would expect the coerce to still take effect here. Please let me know whether this is intended behavior or if there is another way to do what I intended.