Skip to content

Commit cb14f2f

Browse files
authored
Fix mypy tests (#8476)
I was seeing an error in #8475
1 parent dcf5d74 commit cb14f2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/core/nputils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
_HAS_NUMBAGG = Version(numbagg.__version__) >= Version("0.5.0")
3232
except ImportError:
3333
# use numpy methods instead
34-
numbagg = np
34+
numbagg = np # type: ignore
3535
_HAS_NUMBAGG = False
3636

3737

0 commit comments

Comments
 (0)