From a104ef6b3eddba82f4f59c40cc443e8efac55674 Mon Sep 17 00:00:00 2001 From: Stefaan Lippens Date: Wed, 9 Aug 2023 13:38:41 +0200 Subject: [PATCH] fixup! Issue #425 `load_stac`: support lambda based property filtering --- openeo/rest/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openeo/rest/connection.py b/openeo/rest/connection.py index dd44f3928..dd46605fb 100644 --- a/openeo/rest/connection.py +++ b/openeo/rest/connection.py @@ -1185,7 +1185,7 @@ def load_stac( spatial_extent: Optional[Dict[str, float]] = None, temporal_extent: Optional[List[Union[str, datetime.datetime, datetime.date]]] = None, bands: Optional[List[str]] = None, - properties: Optional[dict] = None, + properties: Optional[Dict[str, Union[str, PGNode, Callable]]] = None, ) -> DataCube: """ Loads data from a static STAC catalog or a STAC API Collection and returns the data as a processable :py:class:`DataCube`.