(self, dim, **kwargs)
| 26 | class AGNNConv(conv.Conv): |
| 27 | |
| 28 | def __init__(self, dim, **kwargs): |
| 29 | super(AGNNConv, self).__init__(aggr='add', **kwargs) |
| 30 | self.build = False |
| 31 | |
| 32 | def __call__(self, x, edge_index, size=None, **kwargs): |
| 33 | if not self.build: |
nothing calls this directly
no outgoing calls
no test coverage detected