From 1fb02d191f2aed63a9f0f872c8a87da759479ef7 Mon Sep 17 00:00:00 2001 From: wvandeun Date: Tue, 15 Oct 2024 14:07:21 +0200 Subject: [PATCH] fixes python sdk store guide --- docs/docs/python-sdk/guides/store.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ```