From 7e4310f6a67eadfa087f87a81510575a07992841 Mon Sep 17 00:00:00 2001 From: Colton Padden Date: Tue, 16 Jul 2024 11:32:03 -0400 Subject: [PATCH] [daggy-u] include SensorEvaluationContext import in full code example --- .../pages/dagster-essentials/lesson-9/building-the-sensor.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/dagster-university/pages/dagster-essentials/lesson-9/building-the-sensor.md b/docs/dagster-university/pages/dagster-essentials/lesson-9/building-the-sensor.md index 8874716c4efb0..39e074b932b24 100644 --- a/docs/dagster-university/pages/dagster-essentials/lesson-9/building-the-sensor.md +++ b/docs/dagster-university/pages/dagster-essentials/lesson-9/building-the-sensor.md @@ -157,6 +157,7 @@ Putting everything together, you should have the following code in `sensors/__in ```python from dagster import ( RunRequest, + SensorEvaluationContext, SensorResult, sensor, )