Skip to content

Commit

Permalink
fix: temporarily deactiavte _GCDoNotUpdate base class
Browse files Browse the repository at this point in the history
  • Loading branch information
trgiangdo committed Mar 9, 2024
1 parent ab5ec5a commit c48b1f0
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions taipy/gui_core/_adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@
from taipy.core import (
Cycle,
DataNode,
Job,
Scenario,
Sequence,
Submission,
Task,
is_deletable,
is_editable,
is_promotable,
Expand All @@ -38,13 +34,13 @@ def __repr__(self):
return self.get_label() if hasattr(self, "get_label") else super().__repr__()


Scenario.__bases__ += (_GCDoNotUpdate,)
Sequence.__bases__ += (_GCDoNotUpdate,)
DataNode.__bases__ += (_GCDoNotUpdate,)
Cycle.__bases__ += (_GCDoNotUpdate,)
Job.__bases__ += (_GCDoNotUpdate,)
Task.__bases__ += (_GCDoNotUpdate,)
Submission.__bases__ += (_GCDoNotUpdate,)
# Scenario.__bases__ += (_GCDoNotUpdate,)
# Sequence.__bases__ += (_GCDoNotUpdate,)
# DataNode.__bases__ += (_GCDoNotUpdate,)
# Cycle.__bases__ += (_GCDoNotUpdate,)
# Job.__bases__ += (_GCDoNotUpdate,)
# Task.__bases__ += (_GCDoNotUpdate,)
# Submission.__bases__ += (_GCDoNotUpdate,)


class _EntityType(Enum):
Expand Down

0 comments on commit c48b1f0

Please sign in to comment.