From 15b0cd6914d8a6bd34fa067df419e4ffee1d378e Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Tue, 21 Nov 2023 23:36:37 -0800 Subject: [PATCH] Fix mypy tests I was seeing an error in #8475 --- xarray/core/nputils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xarray/core/nputils.py b/xarray/core/nputils.py index 316a77ead6a..bd33b7b6d8f 100644 --- a/xarray/core/nputils.py +++ b/xarray/core/nputils.py @@ -31,7 +31,7 @@ _HAS_NUMBAGG = Version(numbagg.__version__) >= Version("0.5.0") except ImportError: # use numpy methods instead - numbagg = np + numbagg = np # type: ignore _HAS_NUMBAGG = False