(self, **kwargs)
| 590 | b = 0 |
| 591 | |
| 592 | def __init__(self, **kwargs): |
| 593 | super().__init__(**kwargs) |
| 594 | self.on_trait_change(self.listener1, ["a"]) |
| 595 | |
| 596 | def listener1(self, name, old, new): |
| 597 | self.b += 1 |
nothing calls this directly
no test coverage detected