- Improved documentation
- The library now has more unit tests
- `dict` and `list` without type parameters are now supported
This is now supported
python
from marshmallow_dataclass import dataclass
dataclass
class Environment:
env_variables: dict
However, we do still recommend you
to always use explicit type parameters, that is:
python
from marshmallow_dataclass import dataclass
from typing import Dict
dataclass
class Environment:
env_variables: Dict[str, str]