diff --git a/qiskit/transpiler/passes/calibration/__init__.py b/qiskit/transpiler/passes/calibration/__init__.py index 1fc9f92498c..3b80fbb2653 100644 --- a/qiskit/transpiler/passes/calibration/__init__.py +++ b/qiskit/transpiler/passes/calibration/__init__.py @@ -13,4 +13,3 @@ """Module containing transpiler calibration passes.""" from .builders import RZXCalibrationBuilder, RZXCalibrationBuilderNoEcho, PulseGates -from .rzx_templates import rzx_templates diff --git a/releasenotes/notes/0.19/add-pulse-gate-pass-dc347177ed541bcc.yaml b/releasenotes/notes/0.19/add-pulse-gate-pass-dc347177ed541bcc.yaml index d05ab6b50d8..d1fea80e3f9 100644 --- a/releasenotes/notes/0.19/add-pulse-gate-pass-dc347177ed541bcc.yaml +++ b/releasenotes/notes/0.19/add-pulse-gate-pass-dc347177ed541bcc.yaml @@ -82,11 +82,11 @@ deprecations: are deprecated, and will be removed in a future release. The import path:: - from qiskit.transpiler.passes.scheduling.rzx_templates.rzx_templates import rzx_templates + from qiskit.transpiler.passes.scheduling.rzx_templates import rzx_templates is also deprecated, and will be removed in a future release. You should use the new import paths:: from qiskit.transpiler.passes import RZXCalibrationBuilder from qiskit.transpiler.passes import RZXCalibrationBuilderNoEcho - from qiskit.transpiler.passes.calibration import rzx_templates + from qiskit.transpiler.passes.calibration.rzx_templates import rzx_templates