From 4f1e94833772a6aab30b4b68a932a66a58fd7a98 Mon Sep 17 00:00:00 2001 From: shenshuo <191715030@qq.com> Date: Wed, 9 Oct 2024 10:01:51 +0800 Subject: [PATCH] =?UTF-8?q?2024=E5=B9=B410=E6=9C=889=E6=97=A5=20=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=B8=80=E4=B8=8B=E5=9F=BA=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- websdk2/model_utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/websdk2/model_utils.py b/websdk2/model_utils.py index db1a243..fb52a47 100644 --- a/websdk2/model_utils.py +++ b/websdk2/model_utils.py @@ -99,8 +99,7 @@ def prepare(self): @staticmethod def del_data(data) -> dict: - keys_to_remove = ['_index', '_rowKey'] - for key in keys_to_remove: + for key in ['_index', '_rowKey', 'update_time']: data.pop(key, None) return data