(self, crop_size: Optional[Union[int, None]] = None)
| 16 | """ |
| 17 | |
| 18 | def __init__(self, crop_size: Optional[Union[int, None]] = None): |
| 19 | self.crop_size = crop_size |
| 20 | assert self.crop_size is not None |
| 21 | |
| 22 | def __call__(self, results): |
| 23 | motion = results['motion'] |
nothing calls this directly
no outgoing calls
no test coverage detected