From 6bbc1e552203d4006c28b62dbceeba80616ccbf5 Mon Sep 17 00:00:00 2001 From: eeshsaxena Date: Fri, 3 Jul 2026 17:17:37 +0530 Subject: [PATCH] DOC fix parameter name in CoordinateTransform.reverse docstring labels -> coord_labels to match actual function signature --- xarray/core/coordinate_transform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/core/coordinate_transform.py b/xarray/core/coordinate_transform.py index 02cbbc11caa..3f23a5da678 100644 --- a/xarray/core/coordinate_transform.py +++ b/xarray/core/coordinate_transform.py @@ -56,7 +56,7 @@ def reverse(self, coord_labels: dict[Hashable, Any]) -> dict[str, Any]: Parameters ---------- - labels : dict + coord_labels : dict World coordinate labels. Returns