Skip to content

Commit 2422004

Browse files
authored
Fix mypy issue with entry_points (#5979)
1 parent b1392d0 commit 2422004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/backends/plugins.py

+1-1
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)