Skip to content
Snippets Groups Projects
Commit 9a76dcbe authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Apply suggestion to km3io/daq.py

parent 632e2bce
No related branches found
No related tags found
1 merge request!7Summaryslice status
Pipeline #7964 passed with warnings
......@@ -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)
......
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