From d349b720635b2289fdc898fd92b2d8d788ae76d9 Mon Sep 17 00:00:00 2001 From: Alex Harris <122488678+aleexharris@users.noreply.github.com> Date: Mon, 21 Oct 2024 16:42:21 +0100 Subject: [PATCH] [daggy-u] Example code fix for Lesson 8 in Dagster Essentials (#25393) ## Summary & Motivation Noticed this typo in the code for Lesson 8 of Dagster Essentials which lead to the example code no longer working. This is part of the "Practice: Partition the taxi_trips asset" section of Lesson 8. ## How I Tested These Changes It's just a markdown typo and the code now works in my Dagster University project. --- .../lesson-8/coding-practice-partition-taxi-trips.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dagster-university/pages/dagster-essentials/lesson-8/coding-practice-partition-taxi-trips.md b/docs/dagster-university/pages/dagster-essentials/lesson-8/coding-practice-partition-taxi-trips.md index 647964087198a..f2aa0b5ffc093 100644 --- a/docs/dagster-university/pages/dagster-essentials/lesson-8/coding-practice-partition-taxi-trips.md +++ b/docs/dagster-university/pages/dagster-essentials/lesson-8/coding-practice-partition-taxi-trips.md @@ -42,7 +42,7 @@ The updated asset should look similar to the following code. Click **View answer ```python {% obfuscated="true" %} from dagster import asset, AssetExecutionContext from dagster_duckdb import DuckDBResource -from ..partitions import monthly_partitions +from ..partitions import monthly_partition @asset( deps=["taxi_trips_file"],