(config_value: str, default: "CropValue")
| 188 | |
| 189 | @staticmethod |
| 190 | def from_config(config_value: str, default: "CropValue") -> "CropValue": |
| 191 | try: |
| 192 | return CropValue(config_value) |
| 193 | except ValueError as ex: |
| 194 | raise OptionParseFailure(f"{ex}") from ex |
| 195 | |
| 196 | |
| 197 | class ScoreWeightsValue(ValidatedValue): |
no test coverage detected