From 718bd1cb9e086855a329efad4f24565e67becccb Mon Sep 17 00:00:00 2001 From: Douglas RAILLARD Date: Fri, 7 Dec 2018 18:26:01 +0000 Subject: [PATCH] utils: Remove Serializable.__deepcopy__ Since it had a missing parameter and no implementation on super(), just remove it. We can revisit that if state lost during serialization is not acceptable when doing deep copies. --- lisa/utils.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lisa/utils.py b/lisa/utils.py index a1d5fed11..ed3a4590e 100644 --- a/lisa/utils.py +++ b/lisa/utils.py @@ -412,9 +412,6 @@ class Serializable(Loggable): """ return super().__copy__() - def __deepcopy__(self): - return super().__deepcopy__() - Serializable._init_yaml() class SerializableConfABC(Serializable, abc.ABC): -- GitLab