Notify observers of a change event
(self, change: Bunch)
| 1529 | ) |
| 1530 | |
| 1531 | def notify_change(self, change: Bunch) -> None: |
| 1532 | """Notify observers of a change event""" |
| 1533 | return self._notify_observers(change) |
| 1534 | |
| 1535 | def _notify_observers(self, event: Bunch) -> None: |
| 1536 | """Notify observers of any event""" |
no test coverage detected