File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ <h1 class="title">Module <code>geoengine.workflow_builder.operators</code></h1>
722722 raise ValueError("Invalid operator type")
723723
724724 output_band = None
725- if "outputBand" in operator_dict["params"] and operator_dict["params"] is not None:
725+ if "outputBand" in operator_dict["params"] and operator_dict["params"]["outputBand"] is not None:
726726 output_band = RasterBandDescriptor.from_response(
727727 geoengine_openapi_client.RasterBandDescriptor.from_dict(
728728 operator_dict["params"]["outputBand"]
@@ -2131,7 +2131,7 @@ <h3>Inherited members</h3>
21312131 raise ValueError("Invalid operator type")
21322132
21332133 output_band = None
2134- if "outputBand" in operator_dict["params"] and operator_dict["params"] is not None:
2134+ if "outputBand" in operator_dict["params"] and operator_dict["params"]["outputBand"] is not None:
21352135 output_band = RasterBandDescriptor.from_response(
21362136 geoengine_openapi_client.RasterBandDescriptor.from_dict(
21372137 operator_dict["params"]["outputBand"]
You can’t perform that action at this time.
0 commit comments