diff --git a/stateMachine.py b/stateMachine.py index e64a163..c85d8c8 100644 --- a/stateMachine.py +++ b/stateMachine.py @@ -126,9 +126,6 @@ class _State: def __eq__(self, other): return self.name == other - def __hash__(self): - return hash(self.name) - class StateMachine: ''' Manager for states. This is intended to be used as a context manager (eg