From 069f9657efe0530fdbedd5e37d707955f792ac56 Mon Sep 17 00:00:00 2001 From: ssen85 Date: Mon, 18 Sep 2023 11:06:03 +0200 Subject: [PATCH] Update environment_setup.md The function name in the code snippet is mentioned as my_wf() whereas the actual workflow name is hello_world_wf(). The code does not compile with the actual example in the page. NameError: name 'my_wf' is not defined Signed-off-by: ssen85 Signed-off-by: ssen85 --- docs/environment_setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/environment_setup.md b/docs/environment_setup.md index 5365904d9..e7a4b2e7c 100644 --- a/docs/environment_setup.md +++ b/docs/environment_setup.md @@ -24,7 +24,7 @@ def hello_world_wf() -> str: return res if __name__ == "__main__": - print(f"Running my_wf() {my_wf()}") + print(f"Running my_wf() {hello_world_wf()}") ``` To install `flytekit`, run the following command: