From 95aa04c1401129016c4d95b18b5081cc2f3e844e Mon Sep 17 00:00:00 2001 From: trgiangdo Date: Thu, 21 Nov 2024 17:26:57 +0700 Subject: [PATCH] fix: set default value for _in_context_attributes_changed_collector --- taipy/core/_entity/_entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taipy/core/_entity/_entity.py b/taipy/core/_entity/_entity.py index 2f7f91738..2b5df4a2f 100644 --- a/taipy/core/_entity/_entity.py +++ b/taipy/core/_entity/_entity.py @@ -19,7 +19,7 @@ class _Entity: _ID_PREFIX: str _MANAGER_NAME: str _is_in_context = False - _in_context_attributes_changed_collector: List + _in_context_attributes_changed_collector: List = [] def __enter__(self): self._is_in_context = True