Skip to content

Commit

Permalink
fix: Replace > with >=
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-pasquale committed Jan 8, 2025
1 parent 61c91af commit fb165fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibocal/protocols/coherence/cpmg.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _acquisition(
# this is assuming that RX and RX90 have the same duration
assert (
params.delay_between_pulses_start / 2 / params.n
> platform.natives.single_qubit[q].RX()[0][1].duration
>= platform.natives.single_qubit[q].RX()[0][1].duration
), (
f"Initial delay too short for qubit {q}, "
f"minimum delay should be {platform.natives.single_qubit[q].RX()[0][1].duration * 2 * params.n}"
Expand Down

0 comments on commit fb165fc

Please sign in to comment.