Get whether the widget is active.
(self)
| 72 | self._active = active |
| 73 | |
| 74 | def get_active(self): |
| 75 | """Get whether the widget is active. |
| 76 | """ |
| 77 | return self._active |
| 78 | |
| 79 | # set_active is overridden by SelectorWidgets. |
| 80 | active = property(get_active, lambda self, active: self.set_active(active), |
no outgoing calls
no test coverage detected