From 233188b73fcc6c02cf5e0a3abe39b118b1195c1d Mon Sep 17 00:00:00 2001 From: LJ Date: Thu, 19 Jun 2025 13:43:27 -0700 Subject: [PATCH] docs: fix a docs mistake --- docs/docs/core/flow_methods.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/core/flow_methods.mdx b/docs/docs/core/flow_methods.mdx index 881d22f08..6bef5c79d 100644 --- a/docs/docs/core/flow_methods.mdx +++ b/docs/docs/core/flow_methods.mdx @@ -81,7 +81,7 @@ The `update()` async method creates/updates data in the target. Once the function returns, the target data is fresh up to the moment when the function is called. ```python -stats = await demo_flow.update() +stats = demo_flow.update() print(stats) ```