Set the value.
(self, value: Any)
| 309 | return self._value_var.get() |
| 310 | |
| 311 | def set_value(self, value: Any) -> None: |
| 312 | """Set the value.""" |
| 313 | if self._type_hint == "bool": |
| 314 | self._value_var.set(bool(value)) |
| 315 | else: |
| 316 | self._value_var.set(str(value)) |
| 317 | |
| 318 | def get_key(self) -> str: |
| 319 | """Get the setting key.""" |
no test coverage detected