We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b65db2a commit b1145f2Copy full SHA for b1145f2
docs/graph/beta/joins.md
@@ -139,8 +139,9 @@ async def main():
139
140
graph = g.build()
141
result = await graph.run(state=SimpleState())
142
+ result = {k: result[k] for k in sorted(result)} # force deterministic ordering
143
print(result)
- #> {'cherry': 6, 'banana': 6, 'apple': 5}
144
+ #> {'apple': 5, 'banana': 6, 'cherry': 6}
145
```
146
147
_(This example is complete, it can be run "as is" — you'll need to add `import asyncio; asyncio.run(main())` to run `main`)_
0 commit comments