Skip to content

Commit 22b23a6

Browse files
committed
remove unused variable
1 parent 2d1bdf2 commit 22b23a6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

experiments/ClimaEarth/run_amip.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ Utilities.show_memory_usage(comms_ctx)
453453
model_sims = (atmos_sim = atmos_sim, ice_sim = ice_sim, land_sim = land_sim, ocean_sim = ocean_sim);
454454

455455
## dates
456-
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)], new_month = [false])
456+
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)])
457457

458458
#=
459459
### Online Diagnostics

experiments/ClimaEarth/run_cloudless_aquaplanet.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ model_sims = (atmos_sim = atmos_sim, ocean_sim = ocean_sim);
211211

212212
## dates
213213
date0 = date = Dates.DateTime(start_date, Dates.dateformat"yyyymmdd")
214-
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)], new_month = [false])
214+
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)])
215215

216216
#=
217217
## Initialize Callbacks

experiments/ClimaEarth/run_cloudy_aquaplanet.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ model_sims = (atmos_sim = atmos_sim, ocean_sim = ocean_sim);
232232

233233
## dates
234234
date0 = date = Dates.DateTime(start_date, Dates.dateformat"yyyymmdd")
235-
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)], new_month = [false])
235+
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)])
236236

237237
#=
238238
## Initialize Callbacks

experiments/ClimaEarth/run_cloudy_slabplanet.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ land_mask_data = artifact_data(mask_dataset_path(), "seamask")
175175

176176
## dates
177177
date0 = date = Dates.DateTime(start_date, Dates.dateformat"yyyymmdd")
178-
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)], new_month = [false])
178+
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)])
179179

180180

181181
#=

experiments/ClimaEarth/run_dry_held_suarez.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ model_sims = (atmos_sim = atmos_sim,);
174174

175175
## dates
176176
date0 = date = Dates.DateTime(start_date, Dates.dateformat"yyyymmdd")
177-
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)], new_month = [false])
177+
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)])
178178

179179
#=
180180
## Initialize Callbacks

experiments/ClimaEarth/run_moist_held_suarez.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ model_sims = (atmos_sim = atmos_sim, ocean_sim = ocean_sim);
218218

219219
## dates
220220
date0 = date = Dates.DateTime(start_date, Dates.dateformat"yyyymmdd")
221-
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)], new_month = [false])
221+
dates = (; date = [date], date0 = [date0], first_day_of_month = [Dates.firstdayofmonth(date0)])
222222

223223
#=
224224
## Initialize Callbacks

0 commit comments

Comments
 (0)