(self)
| 68 | |
| 69 | @property |
| 70 | def node_name(self): |
| 71 | return self.__class__.__name__ |
| 72 | |
| 73 | def add_predecessor(self, operation: 'Node', st='spatial'): |
| 74 | if st == 'spatial' and operation not in self.spatial_predecessors: |
nothing calls this directly
no outgoing calls
no test coverage detected