(self, table: tables.Table)
| 294 | self.datasink = datasink |
| 295 | |
| 296 | def __call__(self, table: tables.Table) -> OutputOperator: |
| 297 | self._prepare_inputs(as_arg_tuple(table)) |
| 298 | self.table = table |
| 299 | return self |
| 300 | |
| 301 | def hard_table_dependencies(self) -> StableSet[tables.Table]: |
| 302 | return self.input_tables |
nothing calls this directly
no test coverage detected