Skip to content

Commit

Permalink
fix warnings from baybikes pipeline
Browse files Browse the repository at this point in the history
Test Plan: bk

Reviewers: alangenfeld

Reviewed By: alangenfeld

Differential Revision: https://dagster.phacility.com/D6240
  • Loading branch information
sryza committed Feb 1, 2021
1 parent fd93cf2 commit c27142f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit c27142f

Please sign in to comment.