Skip to content

Commit 76c85ac

Browse files
committed
delete comments
1 parent 78233bd commit 76c85ac

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pytket/extensions/qiskit/qiskit_convert.py

-3
Original file line numberDiff line numberDiff line change
@@ -519,15 +519,12 @@ def _build_if_else_circuit(
519519
qubits: list[Qubit],
520520
bits: list[Bit],
521521
) -> Circuit:
522-
# Conditions must be on a single bit (for now) TODO: support multiple bits.
523-
524522
# Get two CircBox objects which implement the true_body and false_body.
525523
if_box, else_box = _pytket_boxes_from_ifelseop(if_else_op, qregs, cregs)
526524
# else_box can be None if no false_body is specified.
527525
circ_builder = CircuitBuilder(qregs, cregs)
528526
circ = circ_builder.circuit()
529527

530-
# Coniditions must be on a single bit (for now)
531528
if isinstance(if_else_op.condition[0], Clbit):
532529
circ.add_circbox(
533530
circbox=if_box,

0 commit comments

Comments
 (0)