(feat, schema)
| 123 | and returns a transformed version. |
| 124 | """ |
| 125 | def transform_feat(feat, schema): |
| 126 | feat_handler = FeatureHandler(schema[0], schema[1]) |
| 127 | return feat_handler.forward(feat) |
| 128 | |
| 129 | if self.node_schema is None: |
| 130 | return self |
nothing calls this directly
no test coverage detected