(self, n_holes, length)
| 18 | """ |
| 19 | |
| 20 | def __init__(self, n_holes, length): |
| 21 | if n_holes < 0 or length < 0: |
| 22 | raise ValueError("Must set n_holes or length args for cutout") |
| 23 | self.n_holes = n_holes |
| 24 | self.length = length |
| 25 | |
| 26 | def __call__(self, img): |
| 27 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected