Skip to content
Snippets Groups Projects
Commit 49a524de authored by Alán Muñoz's avatar Alán Muñoz
Browse files

bugfix covering 'int' and np.uint types

parent cca5e2d6
No related branches found
No related tags found
No related merge requests found
......@@ -420,7 +420,7 @@ class Writer(BridgeH5):
dset = f[indices_path]
dset[()] = df.index.get_level_values(level=name).tolist()
if df.columns.dtype == np.int:
if df.columns.dtype == np.int or df.columns.dtype == np.dtype("uint"):
tp_path = path + "/timepoint"
f.create_dataset(
name=tp_path,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment