Skip to content

Commit

Permalink
fix: Rabi length for new result shapes
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros11 committed Sep 13, 2024
1 parent c3fcca9 commit e9025e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/qibocal/protocols/rabi/length.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _acquisition(
)

for q in targets:
prob = probability(results[ro_pulses[q].id][0], state=1)
prob = probability(results[ro_pulses[q].id], state=1)
data.register_qubit(
RabiLenType,
(q),
Expand Down
2 changes: 1 addition & 1 deletion src/qibocal/protocols/rabi/length_signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def _acquisition(
)

for q in targets:
result = results[ro_pulses[q].id][0]
result = results[ro_pulses[q].id]
data.register_qubit(
RabiLenSignalType,
(q),
Expand Down

0 comments on commit e9025e1

Please sign in to comment.