From a0980f9d759c4f2f1bd0558487ee00b8818e0f19 Mon Sep 17 00:00:00 2001 From: Marquess Valdez Date: Tue, 26 Mar 2024 10:03:43 -0700 Subject: [PATCH] remove unused type ignore --- pyquil/paulis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyquil/paulis.py b/pyquil/paulis.py index 821d24990..e43dffa90 100644 --- a/pyquil/paulis.py +++ b/pyquil/paulis.py @@ -224,7 +224,7 @@ def __eq__(self, other: object) -> bool: return other == self else: return self.operations_as_set() == other.operations_as_set() and np.allclose( - self.coefficient, other.coefficient # type: ignore + self.coefficient, other.coefficient ) def __hash__(self) -> int: