diff --git a/docs/docs/python-sdk/guides/store.mdx b/docs/docs/python-sdk/guides/store.mdx index 356e277f9b..1603689f6f 100644 --- a/docs/docs/python-sdk/guides/store.mdx +++ b/docs/docs/python-sdk/guides/store.mdx @@ -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) ```