(self, img)
| 113 | self.coord_func = coord_func |
| 114 | |
| 115 | def get_transform(self, img): |
| 116 | if self.coord_func: |
| 117 | return TransformFactory(name="MapImage", apply_image=self.func, apply_coords=self.coord_func) |
| 118 | else: |
| 119 | return TransformFactory(name="MapImage", apply_image=self.func) |
nothing calls this directly
no test coverage detected