Skip to content

Commit 0c2bfc0

Browse files
committed
2 parents f0d0528 + 8a5bd8a commit 0c2bfc0

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,14 @@ node = MyNode()
7676
### Create a Graph
7777

7878
```python
79-
Graph[MyState, Shared](
80-
edges=[(
79+
graph = Graph[MyState, Shared](
80+
edges=[
8181
(
8282
START,
83-
node
84-
),
85-
(
8683
node,
87-
END
88-
), END)
84+
85+
END,
86+
)
8987
]
9088
)
9189
```

0 commit comments

Comments
 (0)