Skip to content

Commit f95291c

Browse files
committed
fixup! Issue #690/#712 best effort resample_spatial on cube without metadata
1 parent f77291f commit f95291c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

openeo/rest/datacube.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@ def process(
117117
"""
118118
pg = self._build_pgnode(process_id=process_id, arguments=arguments, namespace=namespace, **kwargs)
119119
return DataCube(
120-
graph=pg, connection=self._connection, metadata=self.metadata if metadata is _UNSET else metadata
120+
graph=pg,
121+
connection=self._connection,
122+
metadata=self.metadata if metadata is _UNSET else metadata,
121123
)
122124

123125
graph_add_node = legacy_alias(process, "graph_add_node", since="0.1.1")

0 commit comments

Comments
 (0)