Skip to content

Commit

Permalink
Fixing params for hydro module
Browse files Browse the repository at this point in the history
  • Loading branch information
pesap authored and staadecker committed Jan 28, 2023
1 parent 0e8d986 commit 4d98cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions switch_model/wecc/get_inputs/get_inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,8 +659,8 @@ def query_db(full_config, skip_cf):
p.label || '_M' || date_part('month', timestamp_utc) AS tp_to_hts
FROM switch.sampled_timepoint AS tp
JOIN switch.period AS p USING(period_id, study_timeframe_id)
WHERE time_sample_id = {time_sample_id}
AND study_timeframe_id = {study_timeframe_id}
WHERE time_sample_id = {params.time_sample_id}
AND study_timeframe_id = {params.study_timeframe_id}
ORDER BY 1;
""",
)
Expand Down

0 comments on commit 4d98cd8

Please sign in to comment.