Fix type annotation

This commit is contained in:
Nuno Campos
2025-05-08 16:49:01 -07:00
parent ed3f05260a
commit 5cff35d1c3
+2 -1
View File
@@ -16,6 +16,7 @@ from typing import (
overload,
)
from langgraph.cache.base import BaseCache
from langgraph.channels.ephemeral_value import EphemeralValue
from langgraph.channels.last_value import LastValue
from langgraph.checkpoint.base import BaseCheckpointSaver
@@ -318,7 +319,7 @@ class entrypoint:
self,
checkpointer: Optional[BaseCheckpointSaver] = None,
store: Optional[BaseStore] = None,
cache: Optional[CachePolicy] = None,
cache: Optional[BaseCache] = None,
config_schema: Optional[type[Any]] = None,
) -> None:
"""Initialize the entrypoint decorator."""