We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
NOTHING
I think this is a common usecase
@dataclass class UpdateSomethingDTO: im_optional: Maybe[str] = Nothing()
which would be eaise to do
@dataclass class UpdateSomethingDTO: im_optional: Maybe[str] = NOTHING
There is also this ruff false positive if someone cares about this...