(self, change: t.Any)
| 417 | self.updating = False |
| 418 | |
| 419 | def _update(self, change: t.Any) -> None: |
| 420 | if self.updating: |
| 421 | return |
| 422 | with self._busy_updating(): |
| 423 | setattr(self.target[0], self.target[1], self._transform(change.new)) |
| 424 | |
| 425 | def unlink(self) -> None: |
| 426 | self.source[0].unobserve(self._update, names=self.source[1]) |
nothing calls this directly
no test coverage detected