(self)
| 181 | return self._crop |
| 182 | |
| 183 | def __str__(self) -> str: |
| 184 | if self._crop is None: |
| 185 | return "(none)" |
| 186 | x0, y0, x1, y1 = self._crop |
| 187 | return f"[{x0}, {y0}], [{x1}, {y1}]" |
| 188 | |
| 189 | @staticmethod |
| 190 | def from_config(config_value: str, default: "CropValue") -> "CropValue": |
nothing calls this directly
no outgoing calls
no test coverage detected