From afdf58b4fa0098bcfd95582eb0057ddb0501d0d6 Mon Sep 17 00:00:00 2001 From: you-n-g Date: Sun, 24 Jan 2021 10:36:56 +0800 Subject: [PATCH] Update serial.py --- qlib/utils/serial.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/qlib/utils/serial.py b/qlib/utils/serial.py index 2d22434ac..4bc57eccd 100644 --- a/qlib/utils/serial.py +++ b/qlib/utils/serial.py @@ -27,11 +27,6 @@ class Serializable: def dump_all(self): """ will the object dump all object - - Parameters - ---------- - self : [TODO:type] - [TODO:description] """ return getattr(self, "_dump_all", False) @@ -39,11 +34,6 @@ class Serializable: def exclude(self): """ What attribute will be dumped - - Parameters - ---------- - self : [TODO:type] - [TODO:description] """ return getattr(self, "_exclude", [])