Skip to content

Commit

Permalink
updates to checking plumber data
Browse files Browse the repository at this point in the history
  • Loading branch information
TeaganKing committed Jul 22, 2024
1 parent 4643c8c commit 0e753e9
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions python/ctsm/site_and_regional/run_tower.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
-------------------------------------------------------------------
"""
# TODO (NS)
# - [ ]
# - [ ] Case dependency and the ability to check case status
# - [ ] If Case dependency works we don't need finidat given explicilty for post-ad and transient.

Expand Down Expand Up @@ -182,11 +181,11 @@ def check_plumber_data(valid_plumber_sites):

for site_name in valid_plumber_sites:

# TODO: figure out start_year and end_year from shell commands
start_year = "DUMMY_START_YEAR"
end_year = "DUMMY_END_YEAR"
start_month = "DUMMY_START_MONTH"
end_month = "DUMMY_END_MONTH"
# TODO: check that start_year and end_year are set in shell commands so these should get overwritten
start_year = 2018
end_year = 2022
start_month = 1
end_month = 12

logger.debug("Valid plumber site %s found!", site_name)
finidat = None # TODO: may need to update?
Expand Down

0 comments on commit 0e753e9

Please sign in to comment.