Skip to content

Commit

Permalink
Fix coverage of unreachable code
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed Aug 26, 2022
1 parent 17b09a4 commit a17442a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/galois/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

try:
from ._version import __version__, __version_tuple__
except ModuleNotFoundError:
except ModuleNotFoundError: # pragma: no cover
__version__ = "0.0.0"
__version_tuple__ = (0, 0, 0)
import warnings
Expand Down

0 comments on commit a17442a

Please sign in to comment.