From 4c3b8f30a103890a6b3c5f260ddbe3f8a2115888 Mon Sep 17 00:00:00 2001 From: mariarice15 <123215798+mariarice15@users.noreply.github.com> Date: Thu, 29 Aug 2024 16:11:41 +0200 Subject: [PATCH] Update deploy-with-dagster.md --- .../docs/walkthroughs/deploy-a-pipeline/deploy-with-dagster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/website/docs/walkthroughs/deploy-a-pipeline/deploy-with-dagster.md b/docs/website/docs/walkthroughs/deploy-a-pipeline/deploy-with-dagster.md index 77ebdad853..1fe9e9d104 100644 --- a/docs/website/docs/walkthroughs/deploy-a-pipeline/deploy-with-dagster.md +++ b/docs/website/docs/walkthroughs/deploy-a-pipeline/deploy-with-dagster.md @@ -131,7 +131,7 @@ Here's a concise guide to orchestrating a `dlt` pipeline with Dagster, creating ```py from dagster import Definitions, load_assets_from_modules from dagster_embedded_elt.dlt import DagsterDltResource - from . import assets + import assets dlt_resource = DagsterDltResource() all_assets = load_assets_from_modules([assets])