Skip to content

Commit

Permalink
fix: Use readout id, not acquisition
Browse files Browse the repository at this point in the history
  • Loading branch information
alecandido committed Aug 30, 2024
1 parent 9f32a58 commit 5f1f118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibocal/protocols/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def _acquisition(
qubit = platform.qubits[q]
sequence.append((qubit.probe, Delay(duration=rx_sequence.duration)))
sequence.extend(ro_sequence)
ro_pulses[q] = ro_sequence[1][1].id
ro_pulses[q] = ro_sequence[0][1].id

sequences.append(sequence)
all_ro_pulses.append(ro_pulses)
Expand Down

0 comments on commit 5f1f118

Please sign in to comment.