From 967e9bd3fd99a841e88bda37ad8b229ce45ffd54 Mon Sep 17 00:00:00 2001 From: Hauke Schulz <43613877+observingClouds@users.noreply.github.com> Date: Tue, 26 Nov 2024 09:48:11 +0100 Subject: [PATCH] fix typo Co-authored-by: SimonKamuk <43374850+SimonKamuk@users.noreply.github.com> --- mllam_data_prep/ops/projection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mllam_data_prep/ops/projection.py b/mllam_data_prep/ops/projection.py index 922c4bd..c7ed4a5 100644 --- a/mllam_data_prep/ops/projection.py +++ b/mllam_data_prep/ops/projection.py @@ -33,7 +33,7 @@ def _extract_grid_mapping_names(grid_mapping_attr: str) -> List[str]: >>> _extract_grid_mapping_names(m2) ['crsOSGB'] - Note: merge of https://github.com/pydata/xarray/pull/9765 of will allow xarray to handle this directly. + Note: merge of https://github.com/pydata/xarray/pull/9765 will allow xarray to handle this directly. """ if ":" not in grid_mapping_attr: return grid_mapping_attr.split(" ")