(self)
| 57 | ) |
| 58 | |
| 59 | def process(self): |
| 60 | file: ifcopenshell.file |
| 61 | file = self.inputs["file"].sv_get()[0][0] |
| 62 | self.new_file = ifcopenshell.file.from_string(file.wrapped_data.to_string()) |
| 63 | self.remove_entity(self.inputs["entity"].sv_get()) |
| 64 | self.outputs["file"].sv_set([[self.new_file]]) |
| 65 | |
| 66 | def remove_entity( |
| 67 | self, |
nothing calls this directly
no test coverage detected