Skip to content

Commit d13e2fb

Browse files
authored
Update tutorials/workflow/python/monitor-pattern/monitor/monitor_workflow.py
Signed-off-by: Marc Duiker <[email protected]>
1 parent 8a87483 commit d13e2fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/workflow/python/monitor-pattern/monitor/monitor_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Status:
1313
def monitor_workflow(ctx: wf.DaprWorkflowContext, counter: int):
1414
status = yield ctx.call_activity(check_status, input=counter)
1515

16-
if not status. is_ready:
16+
if not status.is_ready:
1717
yield ctx.create_timer(fire_at=timedelta(seconds=2))
1818
yield ctx.continue_as_new(counter + 1)
1919

0 commit comments

Comments
 (0)