From d147d35dabd58a6913ee2be9e4c2aa6455f3e044 Mon Sep 17 00:00:00 2001 From: onefloid <33193059+onefloid@users.noreply.github.com> Date: Mon, 5 Feb 2024 15:17:18 +0100 Subject: [PATCH] [docs] Fixed indentation syntax error --- .../pages/dagster-essentials/lesson-9/building-the-sensor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 719be3addbf0e..4cdff85e5a89c 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 @@ -114,7 +114,7 @@ Now that cursors have been explained, let’s start writing the sensor. # if the file is new or has been modified since the last run, add it to the request queue if filename not in previous_state or previous_state[filename] != last_modified: - with open(file_path, "r") as f: + with open(file_path, "r") as f: request_config = json.load(f) runs_to_request.append(RunRequest(