Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Jesse Nusbaumer <[email protected]>
  • Loading branch information
bitterbark and nusbaume authored May 23, 2024
1 parent 16af726 commit 9558127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/adf_diag.py
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ def move_tsfiles_for_mdtf(self, verbose):
#
# Destination file is MDTF directory and name structure
#
mdtf_dir = os.sep.join([mdtf_model_data_root, case_name, freq])
mdtf_dir = os.path.join(mdtf_model_data_root, case_name, freq)

os.makedirs(mdtf_dir, exist_ok=True)
mdtf_file = (
Expand Down Expand Up @@ -1264,7 +1264,7 @@ def setup_run_mdtf(self):
start_years = self.climo_yrs["syears"]
end_years = self.climo_yrs["eyears"]

case_list_all = list(())
case_list_all = []
for icase, case in enumerate(case_names):
case_list_values = [
case,
Expand Down

0 comments on commit 9558127

Please sign in to comment.