Skip to content

Commit 5bc4bd0

Browse files
authored
Update main.py - thank you clint.
1 parent 660c7db commit 5bc4bd0

File tree

1 file changed

+2
-2
lines changed
  • write_a_book_with_flows/src/write_a_book_with_flows

1 file changed

+2
-2
lines changed

write_a_book_with_flows/src/write_a_book_with_flows/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,15 @@ async def run_flow():
120120
Run the flow.
121121
"""
122122
book_flow = BookFlow()
123-
book_flow.kickoff()
123+
await book_flow.kickoff()
124124

125125

126126
async def plot_flow():
127127
"""
128128
Plot the flow.
129129
"""
130130
book_flow = BookFlow()
131-
book_flow.plot()
131+
await book_flow.plot()
132132

133133

134134
def main():

0 commit comments

Comments
 (0)