From 7a662135353eaf72a98cb78f757a5c0cd1d60ae2 Mon Sep 17 00:00:00 2001 From: Kai-Wendel <125994309+Kai-Wendel@users.noreply.github.com> Date: Tue, 8 Jul 2025 22:49:04 +0200 Subject: [PATCH] Fix typo in types.py in the interrupt example (#5407) Update types.py This example still lacked to include `Command`. --- libs/langgraph/langgraph/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langgraph/langgraph/types.py b/libs/langgraph/langgraph/types.py index 095e73c24..8a653c0b9 100644 --- a/libs/langgraph/langgraph/types.py +++ b/libs/langgraph/langgraph/types.py @@ -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):