Skip to content

Commit 737653a

Browse files
max-sixtysnowman2
authored andcommitted
Fix mypy issue with entry_points (pydata#5979)
1 parent cafdc3c commit 737653a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/backends/plugins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from importlib.metadata import entry_points
1010
except ImportError:
1111
# if the fallback library is missing, we are doomed.
12-
from importlib_metadata import entry_points # type: ignore[no-redef]
12+
from importlib_metadata import entry_points # type: ignore
1313

1414

1515
STANDARD_BACKENDS_ORDER = ["netcdf4", "h5netcdf", "scipy"]

0 commit comments

Comments
 (0)