(self)
| 164 | self.error_log = error_log |
| 165 | |
| 166 | def input_operators(self) -> StableSet[Operator]: |
| 167 | result: StableSet[Operator] = StableSet() |
| 168 | for handle in self.inputs: |
| 169 | for dependency in handle.dependencies: |
| 170 | result.add(dependency) |
| 171 | return result |
| 172 | |
| 173 | def hard_table_dependencies(self) -> StableSet[tables.Table]: |
| 174 | return StableSet() |
no test coverage detected