do not need to hash states anymore

This commit is contained in:
petrucci4prez 2017-06-11 17:44:42 -04:00
parent 9bc01b4b71
commit 2738cc3e0e
1 changed files with 0 additions and 3 deletions

View File

@ -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