File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,8 @@ in a single entity that can be used to create or run batch jobs. For example:
220220
221221.. code-block :: python
222222
223+ from openeo import MultiResult
224+
223225 cube1 = ...
224226 cube2 = ...
225227 multi_result = MultiResult([cube1, cube2])
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ class BaseOpenEoException(Exception):
1818from openeo .rest .datacube import UDF , DataCube
1919from openeo .rest .graph_building import collection_property
2020from openeo .rest .job import BatchJob , RESTJob
21+ from openeo .rest .multiresult import MultiResult
2122
2223
2324def client_version () -> str :
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ class MultiResult(FlatGraphableMixin):
2222
2323 .. code-block:: python
2424
25+ from openeo import MultiResult
26+
2527 cube1 = ...
2628 cube2 = ...
2729 multi_result = MultiResult([cube1, cube2])
You can’t perform that action at this time.
0 commit comments