hdl.ast: remove Value.__hash__.

This is already undefined when defining `Value.__eq__`, and it makes
typecheckers (mypy, pyright/pylance) unhappy.
This commit is contained in:
Catherine 2023-03-06 19:44:53 +00:00
parent ae1aeff0f2
commit 32eabd9372

View file

@ -572,8 +572,6 @@ class Value(metaclass=ABCMeta):
def _rhs_signals(self):
pass # :nocov:
__hash__ = None
@final
class Const(Value):