Return the current value of the internal flag.
(self)
| 89 | _flag: bool = attrs.field(default=False, init=False) |
| 90 | |
| 91 | def is_set(self) -> bool: |
| 92 | """Return the current value of the internal flag.""" |
| 93 | return self._flag |
| 94 | |
| 95 | @enable_ki_protection |
| 96 | def set(self) -> None: |
no outgoing calls