Skip to content

Commit f370cb1

Browse files
committed
Fix #125, make sure to put 'type' in json serialization of stages
1 parent 772bcf0 commit f370cb1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pdal/pipeline.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ def _get_json(self) -> str:
116116
stage2tag[stage] = stage.tag or _generate_tag(stage, stage2tag.values())
117117
options = stage.options
118118
options["tag"] = stage2tag[stage]
119+
options["type"] = stage.type
119120
inputs = _get_input_tags(stage, stage2tag)
120121
if inputs:
121122
options["inputs"] = inputs

0 commit comments

Comments
 (0)