Skip to content

Commit

Permalink
fix str error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ana Ordonez committed Feb 26, 2025
1 parent 1968e57 commit 4599a14
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pcmdi_metrics/sea_ice/sea_ice_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,9 +555,7 @@
weights = None
else:
weights = clim_wts
mse[model][rgn][run][reference_data_set]["monthly_clim"][
"mse"
] = str(
mse[model][rgn][run][reference_data_set]["monthly_clim"]["mse"] = (
lib.mse_t(
real_clim[rgn][run][var] - real_mean[rgn][run],
obs_clims[reference_data_set][rgn][obs_var]
Expand All @@ -566,9 +564,7 @@
)
* 1e-12
)
mse[model][rgn][run][reference_data_set]["total_extent"][
"mse"
] = str(
mse[model][rgn][run][reference_data_set]["total_extent"]["mse"] = (
lib.mse_model(
real_mean[rgn][run], obs_means[reference_data_set][rgn]
)
Expand Down

0 comments on commit 4599a14

Please sign in to comment.