Skip to content

Commit

Permalink
remove unused type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Mar 26, 2024
1 parent 2d52fe0 commit a0980f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyquil/paulis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a0980f9

Please sign in to comment.