From 9a76dcbe6d8022b61148212c54546b84d820efa1 Mon Sep 17 00:00:00 2001 From: Johannes Schumann <jschumann@km3net.de> Date: Wed, 22 Jan 2020 22:16:07 +0100 Subject: [PATCH] Apply suggestion to km3io/daq.py --- km3io/daq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/km3io/daq.py b/km3io/daq.py index a308206..2e30ed0 100644 --- a/km3io/daq.py +++ b/km3io/daq.py @@ -30,7 +30,7 @@ def get_rate(value): def unpack_bits(value): """Helper to unpack bits to bool flags (little endian)""" - value = np.array(value).astype(np.int64) + value = np.array(value).astype(np.int32) value = value.reshape(-1, 1) value = value.view(np.uint8) value = np.flip(value, axis=1) -- GitLab