(self, exp_type: str)
| 121 | # -------------------------------------------- Graph specific transforms |
| 122 | class AbstractGraphTransform(AbstractTransform, ABC): |
| 123 | def __init__(self, exp_type: str): |
| 124 | super().__init__(exp_type) |
| 125 | |
| 126 | @property |
| 127 | def n_nodes(self) -> int: |