diff --git a/src/braket/pennylane_plugin/ahs_device.py b/src/braket/pennylane_plugin/ahs_device.py index 39954ea2..57366221 100644 --- a/src/braket/pennylane_plugin/ahs_device.py +++ b/src/braket/pennylane_plugin/ahs_device.py @@ -38,7 +38,6 @@ from typing import Optional, Union import numpy as np -import pennylane as qml from pennylane._version import __version__ from pennylane.devices import QubitDevice from pennylane.measurements import MeasurementProcess, SampleMeasurement diff --git a/test/unit_tests/test_braket_device.py b/test/unit_tests/test_braket_device.py index 533e1626..32612370 100644 --- a/test/unit_tests/test_braket_device.py +++ b/test/unit_tests/test_braket_device.py @@ -1313,8 +1313,6 @@ def test_execute_some_samples(mock_run): mock_run.return_value = task dev = _aws_device(wires=3) - print(type(qml.Hadamard(0) @ qml.Identity(1))) - with QuantumTape() as circuit: qml.Hadamard(wires=0) qml.CNOT(wires=[0, 1])