From 898b6568e3c59eb2f8bd2fbce8d6f79071c6687d Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Thu, 5 Oct 2023 00:21:59 -0600 Subject: [PATCH] Fix coverage --- ndindex/tests/test_shapetools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndindex/tests/test_shapetools.py b/ndindex/tests/test_shapetools.py index 6eea536b..17531deb 100644 --- a/ndindex/tests/test_shapetools.py +++ b/ndindex/tests/test_shapetools.py @@ -1,7 +1,7 @@ import numpy as np try: from numpy import AxisError as np_AxisError -except ImportError: +except ImportError: # pragma: no cover from numpy.exceptions import AxisError as np_AxisError from hypothesis import assume, given, example