(self, size, interpolation=Image.BILINEAR)
| 214 | interpolation: Default: PIL.Image.BILINEAR |
| 215 | """ |
| 216 | def __init__(self, size, interpolation=Image.BILINEAR): |
| 217 | self.size = size |
| 218 | self.interpolation = interpolation |
| 219 | |
| 220 | def __call__(self, img_group): |
| 221 | for attempt in range(10): |
nothing calls this directly
no outgoing calls
no test coverage detected