There's a bug where, if the seriesnumber is a float, then rqpy.io.getrandevents will fail, as it passes an incorrectly formatted string to getRawEvents in scdmsPyTools. This fix simply ensures that seriesnumber is cast as an int before being passed to getRawEvents.
There's a bug where, if the
seriesnumber
is a float, thenrqpy.io.getrandevents
will fail, as it passes an incorrectly formatted string togetRawEvents
inscdmsPyTools
. This fix simply ensures thatseriesnumber
is cast as anint
before being passed togetRawEvents
.