Explorar o código

minor changes

Toan Quach hai 9 meses
pai
achega
2b25c0fcbc
Modificáronse 2 ficheiros con 0 adicións e 3 borrados
  1. 0 1
      taipy/core/cycle/cycle.py
  2. 0 2
      taipy/core/data/data_node.py

+ 0 - 1
taipy/core/cycle/cycle.py

@@ -102,7 +102,6 @@ class Cycle(_Entity, _Labeled):
     _ID_PREFIX = "CYCLE"
     __SEPARATOR = "_"
     _MANAGER_NAME = "cycle"
-    __CHECK_INIT_DONE_ATTR_NAME = "_init_done"
 
     def __init__(
         self,

+ 0 - 2
taipy/core/data/data_node.py

@@ -139,7 +139,6 @@ class DataNode(_Entity, _Labeled):
     _MANAGER_NAME: str = "data"
     _PATH_KEY = "path"
     __EDIT_TIMEOUT = 30
-    __CHECK_INIT_DONE_ATTR_NAME = "_init_done"
 
     _TAIPY_PROPERTIES: Set[str] = set()
 
@@ -175,7 +174,6 @@ class DataNode(_Entity, _Labeled):
         self._edits: List[Edit] = edits or []
 
         self._properties: _Properties = _Properties(self, **kwargs)
-        self._init_done = True
 
     @staticmethod
     def _new_id(config_id: str) -> DataNodeId: