(self, target_length: int)
| 21 | """ |
| 22 | |
| 23 | def __init__(self, target_length: int) -> None: |
| 24 | self.target_length = target_length |
| 25 | |
| 26 | def apply_image(self, image: np.ndarray) -> np.ndarray: |
| 27 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected