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

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mtreinish committed Sep 12, 2023
1 parent 49bc1ef commit 49390e0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,9 @@ def _add_block_terminating_barrier(
qubits = self._block_dag.qubits
else:
barrier = Barrier(self._block_dag.num_qubits() - len(self._idle_qubits))
qubits = [x for x in self._block_dag.qubits if x not in self._idle_qubits]
qubits = [
x for x in self._block_dag.qubits if x not in self._idle_qubits
]

barrier_node = self._apply_scheduled_op(
block_idx,
Expand Down

0 comments on commit 49390e0

Please sign in to comment.