1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""Constants used in the CLAM package."""
=
=
=
= /
= 100
= 10_000
= 1e-6
"""This is a hack around type-hinting when a value cannot be set in __init__.
https://peps.python.org/pep-0661/
Usage:
```python
class MyClass:
def __init__(self, *args, **kwargs):
...
self.__value: typing.Union[ValueType, Unset] = UNSET
def value_setter(self, *args, **kwargs):
...
self.__value = something
return
@property
def value(self) -> ValueType:
if self.__value is UNSET:
raise ValueError(
f"Please call `value_setter` before using this property."
)
return self.__value
```
"""
= None
"""Return the singular instance of `Unset`."""
=
return
=