Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
eendebakpt committed Nov 20, 2023
1 parent 006449e commit 5fd3e41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def _sequences_to_circuits(
circ = QuantumCircuit(self.num_qubits)
for elem in seq:
circ.append(self._to_instruction(elem, basis_gates), circ.qubits)
circ._append(CircuitInstruction(Barrier(self.num_qubits), circ.qubits) )
circ._append(CircuitInstruction(Barrier(self.num_qubits), circ.qubits))

# Compute inverse, compute only the difference from the previous shorter sequence
prev_elem = self.__compose_clifford_seq(prev_elem, seq[len(prev_seq) :])
Expand Down

0 comments on commit 5fd3e41

Please sign in to comment.