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 11:41:52 -08:00
committed by William Fu-Hinthorn
parent 51c57cc819
commit e20bd15580
+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] = ()