summaryrefslogtreecommitdiff
path: root/silx/gui/plot/StackView.py
diff options
context:
space:
mode:
Diffstat (limited to 'silx/gui/plot/StackView.py')
-rw-r--r--silx/gui/plot/StackView.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/silx/gui/plot/StackView.py b/silx/gui/plot/StackView.py
index 72b6cd4..2a3d7e8 100644
--- a/silx/gui/plot/StackView.py
+++ b/silx/gui/plot/StackView.py
@@ -89,14 +89,8 @@ from silx.utils.array_like import DatasetView, ListOfImages
from silx.math import calibration
from silx.utils.deprecation import deprecated_warning
-try:
- import h5py
-except ImportError:
- def is_dataset(obj):
- return False
- h5py = None
-else:
- from silx.io.utils import is_dataset
+import h5py
+from silx.io.utils import is_dataset
_logger = logging.getLogger(__name__)