Skip to content

Commit 2227772

Browse files
committed
fix: Update import paths in usage examples for DynamoDBStore
1 parent 6814aeb commit 2227772

File tree

1 file changed

+2
-2
lines changed
  • libs/langgraph-checkpoint-aws/langgraph_checkpoint_aws/store/dynamodb

1 file changed

+2
-2
lines changed

libs/langgraph-checkpoint-aws/langgraph_checkpoint_aws/store/dynamodb/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class DynamoDBStore(BaseStore):
5353
Examples:
5454
Basic usage:
5555
```python
56-
from langgraph_checkpoint_aws.store.dynamodb import DynamoDBStore
56+
from langgraph_checkpoint_aws import DynamoDBStore
5757
5858
store = DynamoDBStore(table_name="my-store-table")
5959
store.setup() # Create table if it doesn't exist
@@ -66,7 +66,7 @@ class DynamoDBStore(BaseStore):
6666
6767
Using context manager:
6868
```python
69-
from langgraph_checkpoint_aws.store.dynamodb import DynamoDBStore
69+
from langgraph_checkpoint_aws import DynamoDBStore
7070
7171
with DynamoDBStore.from_conn_string("my-store-table") as store:
7272
store.setup()

0 commit comments

Comments
 (0)