+3
−1
Loading
PLW1641 flags `ConditionValue`, which defines `__eq__` but no `__hash__`; the class holds mutable state and is intentionally unhashable, so make that explicit with `__hash__ = None`. Mypy 2.x rejects `self._generator.gi_frame` because typeshed only exposes `gi_frame` on the concrete generator type, but the value here is always a real generator object, so silence the false positive with a narrow type suppression.