diff --git a/aiogram/dispatcher/fsm/state.py b/aiogram/dispatcher/fsm/state.py index 8cec3ac4..18f7520e 100644 --- a/aiogram/dispatcher/fsm/state.py +++ b/aiogram/dispatcher/fsm/state.py @@ -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):