Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jnumainville committed Jan 3, 2025
1 parent b51373f commit 78b8687
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,12 @@ def add_figure_to_graph(
func: The function to call
"""
self._liveness_scope.manage(table)
if isinstance(table, Table) and not table.is_refreshing:
# static tables should not be managed
# check because it doesn't throw an error on first manage attempt, but leads to errors later
pass
else:
self._liveness_scope.manage(table)

node = DeephavenFigureNode(self._head_node, exec_ctx, args, table, func)

Expand Down

0 comments on commit 78b8687

Please sign in to comment.