Skip to content

Commit

Permalink
prefer newer backport of importlib_metadata
Browse files Browse the repository at this point in the history
Python 3.9 has it, but is missing entrypoint groups
  • Loading branch information
minrk committed Oct 18, 2024
1 parent 3bd1885 commit efb2dcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions multiauthenticator/multiauthenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"""
try:
from importlib.metadata import entry_points
except ImportError:
# Python < 3.10
from importlib_metadata import entry_points
except ImportError:
from importlib.metadata import entry_points

from jupyterhub.auth import Authenticator
from jupyterhub.utils import url_path_join
Expand Down

0 comments on commit efb2dcd

Please sign in to comment.