From 8506c6655bbbad75ed151e2e0078b40e8877333e Mon Sep 17 00:00:00 2001 From: Sydney Runkle Date: Tue, 22 Apr 2025 11:34:38 -0700 Subject: [PATCH] more linting --- 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 e7f68276b..d2bb24740 100644 --- a/libs/langgraph/langgraph/types.py +++ b/libs/langgraph/langgraph/types.py @@ -498,7 +498,7 @@ def interrupt(value: Any) -> Any: from langgraph.errors import GraphInterrupt from langgraph.utils.config import get_config - conf = get_config()[CONF] + conf = get_config()["configurable"] # track interrupt index scratchpad: PregelScratchpad = conf[CONFIG_KEY_SCRATCHPAD] idx = scratchpad.interrupt_counter()