feat(graph_runtime_state): prevent to set variable pool after initialized.

This commit is contained in:
-LAN- 2025-09-04 02:20:19 +08:00
parent 61c79b0013
commit 16e9cd5ac5
No known key found for this signature in database
GPG Key ID: 6BA0D108DED011FF
1 changed files with 0 additions and 5 deletions

View File

@ -56,11 +56,6 @@ class GraphRuntimeState(BaseModel):
"""Get the variable pool."""
return self._variable_pool
@variable_pool.setter
def variable_pool(self, value: VariablePool) -> None:
"""Set the variable pool."""
self._variable_pool = value
@property
def start_at(self) -> float:
"""Get the start time."""