(self, binding: Binding)
| 122 | self._on_change() |
| 123 | |
| 124 | def bind(self, binding: Binding) -> None: |
| 125 | for c in binding.contexts: |
| 126 | self.keys[c][binding.keyspec()] = binding |
| 127 | |
| 128 | def unbind(self, binding: Binding) -> None: |
| 129 | """ |
no test coverage detected