Skip to content
Snippets Groups Projects
Commit a5fd0083 authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

grid_tools: typo fix

parent ef27d61a
No related branches found
No related tags found
1 merge request!258Grid mask support
......@@ -27,7 +27,7 @@ def check_mask_equal(grid1, grid2):
if mask1 is None or mask2 is None:
return False
# compare
return np.all(grid1.to_cannoical(mask1) == grid2.to_cannoical(mask2))
return np.all(grid1.to_canonical(mask1) == grid2.to_canonical(mask2))
def check_mask_shape(mask, shape):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment