I think this is a common usecase ```py @dataclass class UpdateSomethingDTO: im_optional: Maybe[str] = Nothing() ``` which would be eaise to do ```py @dataclass class UpdateSomethingDTO: im_optional: Maybe[str] = NOTHING ``` There is also this ruff false positive if someone cares about this... 