From a44aa4defcfcac01c5bc45b7325b16a599485e7c Mon Sep 17 00:00:00 2001 From: daxfo Date: Sun, 2 Mar 2025 14:29:54 -0800 Subject: [PATCH] Remove no-longer-relevant comment --- cirq-core/cirq/ops/clifford_gate.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cirq-core/cirq/ops/clifford_gate.py b/cirq-core/cirq/ops/clifford_gate.py index f3a4d2d803f..bed4adef238 100644 --- a/cirq-core/cirq/ops/clifford_gate.py +++ b/cirq-core/cirq/ops/clifford_gate.py @@ -143,10 +143,6 @@ def _gate_tableau(num_qubits: int, gate: raw_types.Gate) -> 'cirq.CliffordTablea class CommonCliffordGateMetaClass(value.ABCMetaImplementAnyOneOf): """A metaclass used to lazy initialize several common Clifford Gate as class attributes.""" - # These are class properties so we define them as properties on a metaclass. - # Note that in python 3.9+ @classmethod can be used with @property, so these - # can be moved to CommonCliffordGates. - @property def all_single_qubit_cliffords(cls) -> Sequence['cirq.SingleQubitCliffordGate']: """All 24 single-qubit Clifford gates."""