Skip to content
Snippets Groups Projects

BUGFIX: saving list with None to hdf5

Merged Tomasz Baka requested to merge tomasz.baka/bilby:fix_hdf5_saving into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -283,7 +283,7 @@ def encode_for_hdf5(key, item):
output = item
elif np.issubdtype(item_array.dtype, np.number):
output = np.array(item)
elif issubclass(item_array.dtype.type, str) or item[0] is None:
elif issubclass(item_array.dtype.type, str) or None in item:
output = list()
for value in item:
if isinstance(value, str):
Loading