Skip to content
Snippets Groups Projects
Commit f1a6839f authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

nb: fix handling of per noise calibrations

The calibrations weren't being extracted properly from the noise tuples.

closes #58
parent 0b9d6e2f
No related branches found
No related tags found
No related merge requests found
Pipeline #124403 passed
......@@ -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 = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment