diff --git a/cluster_tools/copy_volume/copy_volume.py b/cluster_tools/copy_volume/copy_volume.py index d29faa8..3885fc9 100644 --- a/cluster_tools/copy_volume/copy_volume.py +++ b/cluster_tools/copy_volume/copy_volume.py @@ -125,7 +125,7 @@ def run_impl(self): dtype = DTYPE_MAPPING.get(dtype, dtype) if self.int_to_uint: assert np.issubdtype(dtype, np.signedinteger), f"Expect a signed integer type, got {dtype}" - dtype = "u" + dtype + dtype = "u" + str(dtype) chunks = task_config.pop("chunks", None) chunks = tuple(block_shape) if chunks is None else chunks