Method
__init__
(self, keys: KeysCollection, cropper: Crop, allow_missing_keys: bool = False, lazy: bool = False)
Source from the content-addressed store, hash-verified
| 344 | backend = Crop.backend |
| 345 | |
| 346 | def __init__(self, keys: KeysCollection, cropper: Crop, allow_missing_keys: bool = False, lazy: bool = False): |
| 347 | MapTransform.__init__(self, keys, allow_missing_keys) |
| 348 | LazyTransform.__init__(self, lazy) |
| 349 | self.cropper = cropper |
| 350 | |
| 351 | @LazyTransform.lazy.setter # type: ignore |
| 352 | def lazy(self, value: bool) -> None: |
Callers
nothing calls this directly
Tested by
no test coverage detected