Skip to content

Commit

Permalink
fix typo in SmurfDataReceiver
Browse files Browse the repository at this point in the history
  • Loading branch information
tristpinsm committed Jun 13, 2024
1 parent 86cfbbc commit effb44f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pysmurf/core/utilities/_SmurfDataReceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _process16(self,frame):
datRaw = frame.getNumpy(0,fl) # uint8

# Convert to 16-bit signed numpy
dat16 = np.array(datRaw, np.int16)
dat = np.array(datRaw, np.int16)

# Update data
self.Data.set(dat,write=True)
Expand Down

0 comments on commit effb44f

Please sign in to comment.