From 38332fd3c6a01c43bb61756f9b6934da53b1165c Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Mon, 4 Nov 2024 11:55:14 -0800 Subject: [PATCH] Lint --- 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 605f06f60..1ed6e43ad 100644 --- a/libs/langgraph/langgraph/types.py +++ b/libs/langgraph/langgraph/types.py @@ -238,7 +238,7 @@ class Control(Generic[N]): self.trigger = trigger self.send = send - def __repr__(self): + def __repr__(self) -> str: contents = ", ".join( f"{key}={value!r}" for key, value in self.__dict__.items() if value )