From f1a6839f4739584b833f43d581ae35c3d96aba4e Mon Sep 17 00:00:00 2001 From: Jameson Graef Rollins <jrollins@finestructure.net> Date: Mon, 4 May 2020 10:48:08 -0700 Subject: [PATCH] nb: fix handling of per noise calibrations The calibrations weren't being extracted properly from the noise tuples. closes #58 --- gwinc/nb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gwinc/nb.py b/gwinc/nb.py index be0be4bf..d75c0998 100644 --- a/gwinc/nb.py +++ b/gwinc/nb.py @@ -270,7 +270,7 @@ class Budget(Noise): cal = None if isinstance(nc, (list, tuple)): noise = nc[0] - cals = nc[1] + cals = nc[1:] else: noise = nc cals = [] -- GitLab