Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into fix_bug_get_all_jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
merav-aharoni committed Jul 31, 2023
2 parents 0474db4 + 5475289 commit 56f747f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qiskit_ibm_provider/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class IBMAccountError(IBMError):


class IBMProviderError(IBMError):
"""Base class for rrrors raise by IBMProvider."""
"""Base class for errors raise by IBMProvider."""

pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def _run_inner(self, dag: DAGCircuit) -> bool:
)
elif isinstance(node.op, IGate):
delay_op = Delay(self._get_duration(qubit_index_map[node.qargs[0]]))
delay_op.condition = node.op.condition
dag.substitute_node(node, delay_op, inplace=True)

modified = True
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
fixes:
- |
A transpilation error will no longer occur when attempting to transpile a circuit containing a
conditional :class:`~qiskit.circuit.library.IGate` with Qiskit 0.44.

0 comments on commit 56f747f

Please sign in to comment.