| 200 | |
| 201 | |
| 202 | class EdgesAndNodesTransforms(AbstractGraphTransform, ABC): |
| 203 | def __init__(self, exp_type: str): |
| 204 | super().__init__(exp_type) |
| 205 | |
| 206 | @property |
| 207 | def n_edges(self) -> int: |
| 208 | return self._n_edges |
| 209 | |
| 210 | |
| 211 | class DuplicateFeaturesTransform(OnlyLayersAreNodesTransforms): |
nothing calls this directly
no outgoing calls
no test coverage detected