From 2ac08cfde83de3262549eb1c1b4f8cafd2ea2adb Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Fri, 25 Oct 2024 18:34:27 -0700 Subject: [PATCH] Remove accidental duplicate variable assignment. --- langgraph/store/mysql/aio.py | 1 - 1 file changed, 1 deletion(-) diff --git a/langgraph/store/mysql/aio.py b/langgraph/store/mysql/aio.py index 2ddee1d..eb9cb61 100644 --- a/langgraph/store/mysql/aio.py +++ b/langgraph/store/mysql/aio.py @@ -45,7 +45,6 @@ def __init__( super().__init__() self._deserializer = deserializer self.conn = conn - self.conn = conn self.loop = asyncio.get_running_loop() async def abatch(self, ops: Iterable[Op]) -> list[Result]: