Fix typo in types.py in the interrupt example (#5407)

Update types.py

This example still lacked to include `Command`.
This commit is contained in:
Kai-Wendel
2025-07-08 20:49:04 +00:00
committed by GitHub
parent c8d32f104d
commit 7a66213535
+1 -1
View File
@@ -428,7 +428,7 @@ def interrupt(value: Any) -> Any:
from langgraph.checkpoint.memory import MemorySaver
from langgraph.constants import START
from langgraph.graph import StateGraph
from langgraph.types import interrupt
from langgraph.types import interrupt, Command
class State(TypedDict):