remove deepcopy method

Co-authored-by: Oleg A. <t0rr@mail.ru>
This commit is contained in:
darksidecat 2022-06-26 13:51:00 +03:00 committed by GitHub
parent 725eb7c660
commit 1e9c954b0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,9 +60,6 @@ class State:
def __hash__(self):
return hash(self.state)
def __deepcopy__(self, memo: Dict[int, "State"]) -> "State":
memo[id(self)] = self
return self
class StatesGroupMeta(type):