(self)
| 119 | |
| 120 | @property |
| 121 | def input_tables(self) -> StableSet[tables.Table]: |
| 122 | return StableSet.union( |
| 123 | *(i.value._operator_dependencies() for i in self._inputs.values()) |
| 124 | ) |
| 125 | |
| 126 | @property |
| 127 | def inputs(self) -> list[InputHandle]: |
nothing calls this directly
no test coverage detected