You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
Simply changing super(EnumField, self).fail(key, **kwargs) to raise super(EnumField, self).make_error(key, **kwargs) seems to work for Marshmallow 3 on Python 3 but fails for Python 2, at least when running tox locally.
Simply changing
super(EnumField, self).fail(key, **kwargs)
toraise super(EnumField, self).make_error(key, **kwargs)
seems to work for Marshmallow 3 on Python 3 but fails for Python 2, at least when running tox locally.https://marshmallow.readthedocs.io/en/stable/upgrading.html#field-fail-is-deprecated-in-favor-of-field-make-error
The text was updated successfully, but these errors were encountered: