Skip to content

Commit

Permalink
Merge pull request #850 from pyiron/h5fast
Browse files Browse the repository at this point in the history
Add additional exceptions to HDF access fast path
  • Loading branch information
pmrv authored Oct 10, 2022
2 parents a1ac398 + f66ea9c commit 460b89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyiron_base/storage/hdfio.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def __getitem__(self, item):
if self._is_convertable_dtype_object_array(obj):
obj = self._convert_dtype_obj_array(obj.copy())
return obj
except (ValueError, OSError):
except (ValueError, OSError, RuntimeError, NotImplementedError):
# h5io couldn't find a dataset with name item, but there still might be a group with that name, which we
# check in the rest of the method
pass
Expand Down

0 comments on commit 460b89c

Please sign in to comment.