Skip to content

Commit

Permalink
Merge pull request #4629 from opsmill/wvd-20241015-docs-fix-sdk-custo…
Browse files Browse the repository at this point in the history
…m-store

Fix Python SDK store guide
  • Loading branch information
wvandeun authored Oct 15, 2024
2 parents 80bba63 + 1fb02d1 commit 1129d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/python-sdk/guides/store.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ You can use a custom store, outside of the Infrahub SDK client. Storing or retri
store = NodeStoreSync()

device = await client.get(kind="TestDevice", name__value="atl1-edge1")
store.set(key=device.name.value, node=store)
store.set(key=device.name.value, node=device)
store.get(key=device.name.value)
```

Expand Down

0 comments on commit 1129d9a

Please sign in to comment.