Update tutorials/workflow/python/fundamentals/basic/basic_workflow.py

Co-authored-by: Alice Gibbons <alicejgibbons@gmail.com>
Signed-off-by: Marc Duiker <marcduiker@users.noreply.github.com>
This commit is contained in:
Marc Duiker 2025-05-20 07:49:23 +02:00 committed by GitHub
parent f3b097dc49
commit e16a4ca57c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import dapr.ext.workflow as wf
wf_runtime = wf.WorkflowRuntime()
"""
Workflows orchestrate activities and other (child)workflows, and include business logic (if/else or switch statements).
Workflows orchestrate activities and other (child) workflows, and include business logic (if/else or switch statements).
Workflow code must be be deterministic. Any non-deterministic behavior should be written inside activities.
Workflow definitions use the `workflow` decorator to define a workflow.