Robert Usher
Robert Usher
The following snippet runs successfully using `marshmallow_dataclass[enum,union]==8.5.2`: ```python import enum from typing import Union import marshmallow_dataclass from dataclasses import dataclass, field class Fruit(enum.Enum): apple = "Apple" banana = "Banana" tomato...
Fixes #23
Adds usage documentation to the attribute macro so it shows up in reexports. I like having the documentation on the main page (without requiring a click through) so I've placed...