Skip to content

Commit

Permalink
Fix deprecated import path for QubitDevice (#194)
Browse files Browse the repository at this point in the history
* Fix deprecated import path for `QubitDevice`

* fix import order
  • Loading branch information
astralcai authored Sep 16, 2024
1 parent a6ac46d commit 725ef8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pennylane_cirq/cirq_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
import functools
import operator

import cirq
import numpy as np
import cirq
import pennylane as qml
from pennylane import QubitDevice
from pennylane.devices import QubitDevice
from pennylane.operation import Tensor
from pennylane.ops import Prod
from pennylane.wires import Wires
Expand Down

0 comments on commit 725ef8f

Please sign in to comment.