We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6b6b09 commit ea9deb0Copy full SHA for ea9deb0
src/rics/types.py
@@ -182,6 +182,11 @@ def __init__(
182
self._options = options
183
self._normalizer = normalizer
184
185
+ @property
186
+ def options(self) -> tuple[T, ...]:
187
+ """Permitted options as explicit values."""
188
+ return self._options
189
+
190
def check(self, value: _t.Any, name: str | None = None) -> T:
191
"""Alias of ``__call__``.
192
0 commit comments