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

typo in bit shift method

parent 09fa51ba
No related branches found
No related tags found
1 merge request!7Summaryslice status
Pipeline #7908 passed with warnings
This commit is part of merge request !7. Comments created here will be created in the context of that merge request.
......@@ -62,7 +62,7 @@ def get_udp_max_sequence_number(value):
def has_udp_trailer(value):
"""Returns the UDP Trailer flag (fifo)"""
return np.any(np.bitwise_and(value, np.leftshift(1, 31)))
return np.any(np.bitwise_and(value, np.left_shift(1, 31)))
class DAQReader:
......
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