Skip to content

Commit

Permalink
added dummy for decadal calendar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cehbrecht committed Sep 27, 2024
1 parent ab84046 commit 1d231e2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions rook/utils/decadal_fixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def apply_decadal_fixes(ds_id, ds):
ds_mod = decadal_fix_3(ds_id, ds_mod)
ds_mod = decadal_fix_4(ds_id, ds_mod)
ds_mod = decadal_fix_5(ds_id, ds_mod)
ds_mod = decadal_fix_calendar(ds_id, ds_mod)
return ds_mod


Expand Down Expand Up @@ -130,3 +131,7 @@ def decadal_fix_5(ds_id, ds):

ds_mod = add_data_var(ds_id, ds, **operands)
return ds_mod


def decadal_fix_calendar(ds_id, ds):
return ds

0 comments on commit 1d231e2

Please sign in to comment.