Whether this option has a value other than its default.
(self)
| 82 | return handler |
| 83 | |
| 84 | def is_set(self) -> bool: |
| 85 | """Whether this option has a value other than its default.""" |
| 86 | return hasattr(self, "_current") |
| 87 | |
| 88 | def set_current(self, new: Any) -> None: |
| 89 | """Set the value of this option |
no outgoing calls