(self, size, interpolation=Image.BILINEAR)
| 276 | interpolation: Default: PIL.Image.BILINEAR |
| 277 | """ |
| 278 | def __init__(self, size, interpolation=Image.BILINEAR): |
| 279 | self.size = size |
| 280 | self.interpolation = interpolation |
| 281 | |
| 282 | def __call__(self, img_group): |
| 283 | for attempt in range(10): |
nothing calls this directly
no outgoing calls
no test coverage detected