(self, **kwargs)
| 2427 | self.notified[name] = {c: getattr(self, c) for c in "abcdefghijkl"} |
| 2428 | |
| 2429 | def __init__(self, **kwargs): |
| 2430 | self.on_trait_change(self._notify) |
| 2431 | super().__init__(**kwargs) |
| 2432 | |
| 2433 | |
| 2434 | def test_notification_order(): |
nothing calls this directly
no test coverage detected