From 52f7edf26530b7cb0022763a6895d5d17b0cba74 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 22:52:21 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- xarray/namedarray/_array_api/_linear_algebra_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/namedarray/_array_api/_linear_algebra_functions.py b/xarray/namedarray/_array_api/_linear_algebra_functions.py index f5e2cc0f389..ae40344c5c2 100644 --- a/xarray/namedarray/_array_api/_linear_algebra_functions.py +++ b/xarray/namedarray/_array_api/_linear_algebra_functions.py @@ -34,7 +34,7 @@ def matmul( >>> a = NamedArray(("z", "y", "x"), np.arange(2 * 2 * 4).reshape((2, 2, 4))) >>> b = NamedArray(("z", "y", "x"), np.arange(2 * 2 * 4).reshape((2, 4, 2))) - >>> axb = matmul(a,b) + >>> axb = matmul(a, b) >>> axb.dims, axb.shape """ xp = _get_data_namespace(x1)