Skip to content

Commit

Permalink
Fix style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dexter2206 committed Aug 15, 2022
1 parent 8691ddf commit 42aa87c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _orquestra_expr_from_qiskit(expr):
_builtin_gates.YY: qiskit.circuit.library.RYYGate,
_builtin_gates.ZZ: qiskit.circuit.library.RZZGate,
_builtin_gates.U3: qiskit.circuit.library.U3Gate,
_builtin_gates.Delay: qiskit.circuit.Delay
_builtin_gates.Delay: qiskit.circuit.Delay,
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@ def _make_qiskit_circuit(n_qubits, commands, n_cbits=0):
),
(
_circuit.Circuit([_builtin_gates.Delay(1)(0)]),
_make_qiskit_circuit(1, [("delay", (1, 0))])
)
_make_qiskit_circuit(1, [("delay", (1, 0))]),
),
]


Expand Down

0 comments on commit 42aa87c

Please sign in to comment.