(self)
| 252 | return self._value |
| 253 | |
| 254 | def __str__(self) -> str: |
| 255 | if self._value is None: |
| 256 | return "auto" |
| 257 | return str(self._value) |
| 258 | |
| 259 | @staticmethod |
| 260 | def from_config(config_value: str, default: "KernelSizeValue") -> "KernelSizeValue": |
nothing calls this directly
no outgoing calls
no test coverage detected