(self, n_holes, length)
| 10 | length (int): The length (in pixels) of each square patch. |
| 11 | """ |
| 12 | def __init__(self, n_holes, length): |
| 13 | self.n_holes = n_holes |
| 14 | self.length = length |
| 15 | |
| 16 | def __call__(self, img): |
| 17 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected