Note
This is the documentation for the current state of the development branch of Qiskit Experiments. The documentation or APIs here can change prior to being released.
Calibrations.remove_schedule¶
- Calibrations.remove_schedule(schedule, qubits=None)[source]¶
Remove a schedule that was previously registered.
Allows users to remove a schedule from the calibrations. The history of the parameters will remain in the calibrations.
- Parameters:
schedule (
ScheduleBlock
) – The schedule to remove.qubits (
Union
[int
,Tuple
[int
,...
],None
]) – The qubits for which to remove the schedules. If None is given then this schedule is the default schedule for all qubits.
- Raises:
CalibrationError – If other schedules depend on
schedule
.