Skip to content

Commit

Permalink
Merge branch 'main' into bug/1228_plot_clim
Browse files Browse the repository at this point in the history
  • Loading branch information
lee1043 authored Jan 8, 2025
2 parents 3966f03 + af6b45a commit 42d76d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcmdi_metrics/io/xcdat_openxml.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,11 @@ def _xcdat_openxml(

if len(ncfile_list) > 1:
ds = xc.open_mfdataset(
ncfile_list, data_var=data_var, decode_times=decode_times, chunks=None
ncfile_list, data_var=data_var, decode_times=decode_times, chunks=chunks
)
else:
ds = xc.open_dataset(
ncfile_list[0], data_var=data_var, decode_times=decode_times, chunks=None
ncfile_list[0], data_var=data_var, decode_times=decode_times, chunks=chunks
)

return ds

0 comments on commit 42d76d1

Please sign in to comment.