From c27142fa52b6193c1ea7d4de887a66673b981936 Mon Sep 17 00:00:00 2001 From: Sandy Ryza Date: Mon, 1 Feb 2021 14:23:45 -0800 Subject: [PATCH] fix warnings from baybikes pipeline Test Plan: bk Reviewers: alangenfeld Reviewed By: alangenfeld Differential Revision: https://dagster.phacility.com/D6240 --- .../legacy_examples/dagster_examples/bay_bikes/pipelines.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/legacy_examples/dagster_examples/bay_bikes/pipelines.py b/examples/legacy_examples/dagster_examples/bay_bikes/pipelines.py index 00c4f30542a68..39cd09c762f08 100644 --- a/examples/legacy_examples/dagster_examples/bay_bikes/pipelines.py +++ b/examples/legacy_examples/dagster_examples/bay_bikes/pipelines.py @@ -107,11 +107,11 @@ mode_defs=MODES, preset_defs=WEATHER_INGEST_PRESETS + TRIP_INGEST_PRESETS + TRAINING_PRESETS, ) def generate_training_set_and_train_model(): - return train_daily_bike_supply_model(weather_etl(), trip_etl()) + train_daily_bike_supply_model(weather_etl(), trip_etl()) @pipeline( mode_defs=MODES, preset_defs=WEATHER_INGEST_PRESETS, ) def daily_weather_pipeline(): - return weather_etl() + weather_etl()