Alexandre Zia

Results 3 comments of Alexandre Zia

You could do this monkeypatch ``` from marshmallow_enum import EnumField string_types = (str, ) def _deserialize_by_name(self, value, attr, data): if not isinstance(value, string_types): self.fail('must_be_string', input=value, name=value) if self.enum.name == 'statusenum':...

> Hey @alexandrezia I realize this was opened a long time ago but would you be willing to resubmit this? If not, would it be okay if I resubmitted this...