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.
Currently,
Noneis the default value in most places where an argument can be omitted. In such cases,Nonejust means the value has been left unset.It would be clearer to use the
UNSETsentinel value for this purpose.Todo:
Nonedefault values withvalue: T | Unset = UNSETor similar.