Skip to content

Commit

Permalink
Fix mypy issue with entry_points (#5979)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty authored Nov 12, 2021
1 parent b1392d0 commit 2422004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/backends/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from importlib.metadata import entry_points
except ImportError:
# if the fallback library is missing, we are doomed.
from importlib_metadata import entry_points # type: ignore[no-redef]
from importlib_metadata import entry_points # type: ignore


STANDARD_BACKENDS_ORDER = ["netcdf4", "h5netcdf", "scipy"]
Expand Down

0 comments on commit 2422004

Please sign in to comment.