Skip to content

Commit

Permalink
bug fix for no_depths flag
Browse files Browse the repository at this point in the history
  • Loading branch information
jasontempestholt committed Mar 15, 2024
1 parent 65cccc5 commit 2d9aa65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coast/data/gridded.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _setup_grid_obj(self, chunks, multiple, **kwargs):
self.set_dimension_mapping()
self.set_variable_mapping()
lims = kwargs.get("lims", [])
no_depths = kwargs.get("no_depth",False)
no_depths = kwargs.get("no_depths",False)
if self.fn_data is not None:
self.load(self.fn_data, chunks, multiple)

Expand Down

0 comments on commit 2d9aa65

Please sign in to comment.