Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Nov 19, 2024
1 parent 9dd2497 commit 14931b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database-cleanup/database_cleanup/save.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def save_forecast_and_values(
if site_uuids is not None:
stmt = sa.select(ForecastSQL.forecast_uuid).\
filter(ForecastSQL.site_uuid.in_(site_uuids)).\
filter(ForecastSQL.forecast_uuids.in_(forecast_uuids))
filter(ForecastSQL.forecast_uuid.in_(forecast_uuids))

forecast_uuids = session.scalars(stmt).all()

Expand Down

0 comments on commit 14931b8

Please sign in to comment.