From 06ce09c8bf445ef4daf6226b98c92dd936287152 Mon Sep 17 00:00:00 2001 From: Josh Braun Date: Tue, 17 Sep 2024 17:52:02 -0400 Subject: [PATCH] Update hello-world.py (#24552) Update hello world to include deps so it matches the linage screenshot ## Summary & Motivation ## How I Tested These Changes ## Changelog Insert changelog entry or "NOCHANGELOG" here. - [ ] `NEW` _(added new feature or capability)_ - [ ] `BUGFIX` _(fixed a bug)_ - [ ] `DOCS` _(added or updated documentation)_ --- .../docs_beta_snippets/getting-started/hello-world.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/docs_beta_snippets/docs_beta_snippets/getting-started/hello-world.py b/examples/docs_beta_snippets/docs_beta_snippets/getting-started/hello-world.py index 535fecc28b08c..5b4904ac740dc 100644 --- a/examples/docs_beta_snippets/docs_beta_snippets/getting-started/hello-world.py +++ b/examples/docs_beta_snippets/docs_beta_snippets/getting-started/hello-world.py @@ -6,7 +6,7 @@ def hello(context: dg.AssetExecutionContext): context.log.info("Hello!") -@dg.asset +@dg.asset(deps=[hello]) def world(context: dg.AssetExecutionContext): context.log.info("World!")