(self, module)
| 109 | |
| 110 | class Catcher(nn.Module): |
| 111 | def __init__(self, module): |
| 112 | super().__init__() |
| 113 | self.module = module |
| 114 | |
| 115 | def forward(self, inp, **kwargs): |
| 116 | inps.append(inp) |
nothing calls this directly
no outgoing calls
no test coverage detected