Skip to content

Commit b741497

Browse files
committed
Silence mypy error
1 parent 937da83 commit b741497

File tree

1 file changed

+1
-1
lines changed
  • langgraph/checkpoint/redis

1 file changed

+1
-1
lines changed

langgraph/checkpoint/redis/aio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ async def aput(
411411
# store at top-level for filters in list()
412412
if all(key in metadata for key in ["source", "step"]):
413413
checkpoint_data["source"] = metadata["source"]
414-
checkpoint_data["step"] = metadata["step"]
414+
checkpoint_data["step"] = metadata["step"] # type: ignore
415415

416416
await self.checkpoints_index.load(
417417
[checkpoint_data],

0 commit comments

Comments
 (0)