Skip to content

Commit

Permalink
[daggy-u] Example code fix for Lesson 8 in Dagster Essentials (#25393)
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
aleexharris authored Oct 21, 2024
1 parent 28f7302 commit d349b72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down

2 comments on commit d349b72

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagster-university ready!

✅ Preview
https://dagster-university-nm7bkk7m5-elementl.vercel.app

Built with commit d349b72.
This pull request is being automatically deployed with vercel-action

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagster-docs ready!

✅ Preview
https://dagster-docs-eb00raw4u-elementl.vercel.app
https://master.dagster.dagster-docs.io

Built with commit d349b72.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.