that-depends icon indicating copy to clipboard operation
that-depends copied to clipboard

Replace `None` defaults with `Unset`

Open xelandernt opened this issue 5 months ago • 0 comments

Currently, None is the default value in most places where an argument can be omitted. In such cases, None just means the value has been left unset.

It would be clearer to use the UNSET sentinel value for this purpose.

Todo:

  • [ ] Replace all instances of None default values with value: T | Unset = UNSET or similar.

xelandernt avatar Jul 16 '25 07:07 xelandernt