We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6b6b09 commit cd9b901Copy full SHA for cd9b901
src/rics/types.py
@@ -181,6 +181,11 @@ def __init__(
181
self._exc_type = TypeError if exc_type is None else exc_type
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__``.
0 commit comments