(self, index: int)
| 6 | class Node(nn.Module): |
| 7 | |
| 8 | def __init__(self, index: int): |
| 9 | super().__init__() |
| 10 | self._index = index |
| 11 | |
| 12 | def forward(self, *args, **kwargs): |
| 13 | raise NotImplementedError |
nothing calls this directly
no outgoing calls
no test coverage detected