Handle value change.
(self)
| 287 | self._input_widget.grid(row=0, column=1, sticky="w", pady=5) |
| 288 | |
| 289 | def _on_value_change(self) -> None: |
| 290 | """Handle value change.""" |
| 291 | if self._on_change: |
| 292 | self._on_change(self._key, self.get_value()) |
| 293 | |
| 294 | def get_value(self) -> Any: |
| 295 | """Get the current value with proper type conversion.""" |
no test coverage detected