Whether or not there are any variables in this node.
(self)
| 734 | |
| 735 | @property |
| 736 | def has_data(self) -> bool: |
| 737 | """Whether or not there are any variables in this node.""" |
| 738 | return bool(self._data_variables or self._node_coord_variables) |
| 739 | |
| 740 | @property |
| 741 | def has_attrs(self) -> bool: |
no outgoing calls