Skip to content

Commit

Permalink
removed spurious imports
Browse files Browse the repository at this point in the history
  • Loading branch information
akissinger committed Dec 22, 2024
1 parent cd7e5e7 commit 4dac7b4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pyzx/pauliweb.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from zmq import NORM_BLOCK_SIZE
from .gflow import gflow
from .circuit import Circuit
from .utils import EdgeType, VertexType, vertex_is_zx
from .simplify import gadgetize, to_rg
from .graph.base import BaseGraph, VT, ET

from typing import Set, Dict, Tuple, Generic
Expand Down Expand Up @@ -208,4 +205,4 @@ def compute_pauli_webs(g: BaseGraph[VT,ET]) -> Tuple[Dict[VT, int], Dict[VT, Pau
zwebs[v] = pw1


return (order, zwebs, xwebs)
return (order, zwebs, xwebs)

0 comments on commit 4dac7b4

Please sign in to comment.