From a97c1dd4d5e22b7ec6c5cffeaa0996ce2b1cca4f Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Thu, 23 May 2024 11:36:54 -0400 Subject: [PATCH] [daggy-u] - Remove asterisks from code snippet (#22049) ## Summary & Motivation This PR removes some extra asterisks (likely leftover formatting) from Lesson 9 of DU Essentials. ## How I Tested These Changes --- .../lesson-9/updating-the-definitions-object.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dagster-university/pages/dagster-essentials/lesson-9/updating-the-definitions-object.md b/docs/dagster-university/pages/dagster-essentials/lesson-9/updating-the-definitions-object.md index ae8db9ca916a9..fd82e6c45befe 100644 --- a/docs/dagster-university/pages/dagster-essentials/lesson-9/updating-the-definitions-object.md +++ b/docs/dagster-university/pages/dagster-essentials/lesson-9/updating-the-definitions-object.md @@ -27,7 +27,7 @@ As with your other Dagster definitions, the final step is to add the sensor, its 3. Add the `adhoc_request_job` to `all_jobs` : ```python - all_jobs = [trip_update_job, weekly_update_job**, adhoc_request_job**] + all_jobs = [trip_update_job, weekly_update_job, adhoc_request_job] ``` 4. Beneath `all_schedules`, create a new variable named `all_sensors` and add the `adhoc_request_sensor` to it: