1
0
Fork 0

test: ignore import error in version module

our workaround for that seems to be okay, so should be easier to
ignore this instead of trying to rig up a special test
This commit is contained in:
Lance Edgar 2024-06-10 15:04:53 -05:00
parent 9dff672633
commit 3e2901b0cd

View file

@ -2,7 +2,7 @@
try:
from importlib.metadata import version
except ImportError:
except ImportError: # pragma: no cover
from importlib_metadata import version