From 4dac7b422880535c057cea0050adb431bfee4fc4 Mon Sep 17 00:00:00 2001 From: Aleks Kissinger Date: Sun, 22 Dec 2024 14:19:47 +0000 Subject: [PATCH] removed spurious imports --- pyzx/pauliweb.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pyzx/pauliweb.py b/pyzx/pauliweb.py index c109ffd4..3b4b3529 100644 --- a/pyzx/pauliweb.py +++ b/pyzx/pauliweb.py @@ -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 @@ -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) \ No newline at end of file + return (order, zwebs, xwebs)