Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jselig-rigetti committed Oct 25, 2023
1 parent 1b2b431 commit 1da76a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forest/benchmarking/qubit_spectroscopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def generate_t2_echo_experiments(qubits: Sequence[int], times: Sequence[float],
program = Program()
settings = []
for q in qubits:
half_delay += Delay(frames=[], qubits=[q], duration=half_time)
half_delay = Delay(frames=[], qubits=[q], duration=half_time)
# echo
program += [half_delay, RY(pi, q), half_delay]
# apply detuning
Expand Down

0 comments on commit 1da76a4

Please sign in to comment.