(self, co_transforms)
| 22 | """ |
| 23 | |
| 24 | def __init__(self, co_transforms): |
| 25 | self.co_transforms = co_transforms |
| 26 | |
| 27 | def __call__(self, input, target): |
| 28 | for t in self.co_transforms: |
nothing calls this directly
no outgoing calls
no test coverage detected