Skip to content

Commit 25192e6

Browse files
committed
Ignore raise in __init__
1 parent 450fdf6 commit 25192e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stumpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
here = os.path.normcase(__file__)
2929
if not here.startswith(os.path.join(dist_loc, "stumpy")):
3030
# not installed, but there is another version that *is*
31-
raise DistributionNotFound
31+
raise DistributionNotFound # pragma: no cover
3232
except DistributionNotFound: # pragma: no cover
3333
__version__ = "Please install this project with setup.py"
3434
else: # pragma: no cover

0 commit comments

Comments
 (0)