lib: Fix incorrect default for Command.update

- this should not default to empty tuple, it should default to None
This commit is contained in:
Nuno Campos
2024-12-18 13:15:38 +00:00
parent 8b70da6a0f
commit 4c3a38d324
+1 -1
View File
@@ -271,7 +271,7 @@ class Command(Generic[N], ToolOutputMixin):
"""
graph: Optional[str] = None
update: Any = ()
update: Optional[Any] = None
resume: Optional[Union[Any, dict[str, Any]]] = None
goto: Union[Send, Sequence[Union[Send, str]], str] = ()