Skip to content

Commit d5d9305

Browse files
committed
Update quantinuum.py
1 parent 3cff272 commit d5d9305

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pytket/extensions/quantinuum/backends/quantinuum.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,6 @@ def default_compilation_pass(
670670
671671
:return: Compilation pass for compiling circuits to Quantinuum devices
672672
"""
673-
print("Timeout: ", timeout)
674673
assert optimisation_level in range(4)
675674
passlist = [
676675
DecomposeBoxes(),
@@ -822,7 +821,7 @@ def get_compiled_circuit(
822821
return_circuit = circuit.copy()
823822
if optimisation_level == 3 and circuit.n_gates_of_type(OpType.Barrier) > 0:
824823
warnings.warn(
825-
f"Barrier operations in this circuit will be removed when using "
824+
"Barrier operations in this circuit will be removed when using "
826825
"optimisation level 3."
827826
)
828827
self.default_compilation_pass(optimisation_level, timeout).apply(return_circuit)

0 commit comments

Comments
 (0)