(self)
| 215 | return len(self.output_metas) |
| 216 | |
| 217 | def copy(self): |
| 218 | return OperationMeta( |
| 219 | input_metas = [meta.copy() for meta in self.input_metas], |
| 220 | output_metas = [meta.copy() for meta in self.output_metas], |
| 221 | operation_name=self.operation_name, operation_type=self.operation_type, |
| 222 | executing_order=self.executing_order) |
| 223 | |
| 224 | |
| 225 | def convert_any_to_python_primary_type( |
nothing calls this directly
no test coverage detected