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
I had an error in utils.py:uvp_noise_error. It is due to a certain combination of inputs. Here are the lines of code (at the top of the function) and the line where the error can occur:
# type checks
if isinstance(err_type, str):
err_type = [err_type]
# get metadata if needed
if precomp_P_N is None:
lsts = np.unique(auto_Tsys.lst_array) <--- Crashes if auto_Tsys=None, which it could be if user didn’t supply it.
freqs = auto_Tsys.freq_array[0]
The text was updated successfully, but these errors were encountered:
Related to #281 and #317.
I had an error in utils.py:uvp_noise_error. It is due to a certain combination of inputs. Here are the lines of code (at the top of the function) and the line where the error can occur:
The text was updated successfully, but these errors were encountered: