(self, mask, pattern)
| 427 | |
| 428 | class TriggerTrans: |
| 429 | def __init__(self, mask, pattern): |
| 430 | self.mask = mask |
| 431 | self.pattern = pattern |
| 432 | |
| 433 | def __call__(self, x): |
| 434 | x = np.asarray(x) |
nothing calls this directly
no outgoing calls
no test coverage detected