From e9663156c116ee5416f87082fabc2c94572962e9 Mon Sep 17 00:00:00 2001 From: Pete Hunt Date: Fri, 15 Nov 2024 16:51:32 -0500 Subject: [PATCH] Add missing dg. prefix to declarative automation docs (#25960) ## Summary & Motivation As the title says ## How I Tested These Changes Didn't --- docs/content/concepts/automation/declarative-automation.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/concepts/automation/declarative-automation.mdx b/docs/content/concepts/automation/declarative-automation.mdx index ae7400358cd51..07394f7d282f7 100644 --- a/docs/content/concepts/automation/declarative-automation.mdx +++ b/docs/content/concepts/automation/declarative-automation.mdx @@ -148,10 +148,10 @@ def my_eager_check() -> dg.AssetCheckResult: return dg.AssetCheckResult(passed=True) -AssetCheckSpec( +dg.AssetCheckSpec( "my_cron_check", asset=dg.AssetKey("orders"), - automation_condition=AutomationCondition.on_cron("@daily"), + automation_condition=dg.AutomationCondition.on_cron("@daily"), ) ```