From d8e8057312176482fb97cf973f8339fc46086b02 Mon Sep 17 00:00:00 2001 From: Ariana Barzinpour Date: Wed, 3 May 2023 04:29:23 +0000 Subject: [PATCH] fix last error --- datacube/api/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datacube/api/core.py b/datacube/api/core.py index 8ca5160f6..4ded4e380 100644 --- a/datacube/api/core.py +++ b/datacube/api/core.py @@ -1052,7 +1052,7 @@ def _mk_empty(shape: Tuple[int, ...]) -> str: dss = tiled_dss.get(idx, None) if dss is None: - val = _mk_empty(gbt.chunk_shape(idx).xy) + val = _mk_empty(gbt.chunk_shape(idx)) # 3D case if 'extra_dim' in measurement: index_subset = extra_dims.measurements_index(measurement.extra_dim)