From f1f0676eab8a00ec5bedc4f2ec46decb26848f9f Mon Sep 17 00:00:00 2001 From: JiaWei Jiang Date: Fri, 25 Oct 2024 23:22:40 +0800 Subject: [PATCH] fix: Modify the docstring of wf Signed-off-by: JiaWei Jiang --- .../{{cookiecutter.project_name}}/workflows/example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic-template-imagespec/{{cookiecutter.project_name}}/workflows/example.py b/basic-template-imagespec/{{cookiecutter.project_name}}/workflows/example.py index 06e27c7..6b9f2a3 100644 --- a/basic-template-imagespec/{{cookiecutter.project_name}}/workflows/example.py +++ b/basic-template-imagespec/{{cookiecutter.project_name}}/workflows/example.py @@ -50,7 +50,7 @@ def wf(name: str = "world") -> typing.Tuple[str, int]: The @workflow decorator defines an execution graph that is composed of tasks and potentially sub-workflows. In this simple example, the workflow - is composed of just one task. + is composed of two tasks, including `say_hello` and `greeting_length`. There are a few important things to note about workflows: - Workflows are a domain-specific language (DSL) for creating execution