You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the case that one wants to load only the waveforms and not the ana_data, the object isn't assigned as ana_data = None and an UnboundLocalError occurs when reaching the return statement.
A hack is to request ana_data anyway by doing DAPHNEUnpacker(ana_data_prescale=1, wvfm_data_prescale=1) (could be any integers) and toss the returned result, but this is not ideal.
The text was updated successfully, but these errors were encountered:
rawdatautils/python/rawdatautils/unpack/utils.py
Lines 520 to 521 in 8089330
In the case that one wants to load only the waveforms and not the
ana_data
, the object isn't assigned asana_data = None
and anUnboundLocalError
occurs when reaching the return statement.A hack is to request
ana_data
anyway by doingDAPHNEUnpacker(ana_data_prescale=1, wvfm_data_prescale=1)
(could be any integers) and toss the returned result, but this is not ideal.The text was updated successfully, but these errors were encountered: