Skip to content
Snippets Groups Projects
Commit b90a44aa authored by Daniel Bustamante Ospina's avatar Daniel Bustamante Ospina Committed by Daniel Bustamante Ospina
Browse files

Update workflow example to include the `stepwise=True` parameter in...

    Update workflow example to include the `stepwise=True` parameter in `w.run()`. This ensures could execute the example code without 'ValueError: Stepwise context is required to run stepwise' error.
parent 9f58dadf
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,7 @@ In a notebook environment it can be helpful to run a workflow step by step. You
```python
w = ConcurrentFlow(timeout=10, verbose=True)
handler = w.run()
handler = w.run(stepwise=True)
while not handler.is_done():
# run_step returns the step's output event
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment