Get whether the widget is active.
(self)
| 77 | self._active = active |
| 78 | |
| 79 | def get_active(self): |
| 80 | """Get whether the widget is active.""" |
| 81 | return self._active |
| 82 | |
| 83 | # set_active is overridden by SelectorWidgets. |
| 84 | active = property(get_active, set_active, doc="Is the widget active?") |
no outgoing calls
no test coverage detected