langgraph: relax type annotation for Command.update (#2777)

Addresses #2758 , #2747
This commit is contained in:
Vadym Barda
2024-12-16 14:00:23 -05:00
committed by GitHub
parent 9cbef9b542
commit d2794eda0a
+1 -1
View File
@@ -271,7 +271,7 @@ class Command(Generic[N], ToolOutputMixin):
"""
graph: Optional[str] = None
update: Union[dict[str, Any], Sequence[tuple[str, Any]]] = ()
update: Any = ()
resume: Optional[Union[Any, dict[str, Any]]] = None
goto: Union[Send, Sequence[Union[Send, str]], str] = ()