Skip to content

Commit

Permalink
Fix typo in import that may have been breaking API docs
Browse files Browse the repository at this point in the history
Fix typo: "griddedd" -> "gridded". This could be the reason the CI
checks were failing mysteriously while building the docs.
  • Loading branch information
trhille committed Aug 15, 2024
1 parent 92a7b11 commit 0971531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compass/landice/tests/greenland/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
clean_up_after_interp,
interp_gridded2mali,
make_region_masks,
preprocess_griddedd_data,
preprocess_gridded_data,
)
from compass.model import make_graph_file
from compass.step import Step
Expand Down Expand Up @@ -86,7 +86,7 @@ def run(self):
# Preprocess the gridded GrIS source datasets to work
# with the rest of the workflow
logger.info('calling preprocess_gridded_data')
preprocessed_gridded_dataset = preprocess_griddedd_data(
preprocessed_gridded_dataset = preprocess_gridded_data(
self, source_gridded_dataset_1km, floodMask)

# Now build the base mesh and perform the standard interpolation
Expand Down

0 comments on commit 0971531

Please sign in to comment.