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

fix variable name

parent 04cf0176
No related branches found
No related tags found
1 merge request!286Add mask to Info object
Pipeline #263371 passed with stages
in 4 minutes and 36 seconds
......@@ -180,8 +180,8 @@ def _no_grid_shape_valid(data_shape, grid):
return False
dshp = np.array(data_shape)
gshp = np.array(grid.data_shape)
check = gshp != -1
return np.all(dshp[check] == gshp[check])
fix_dims = gshp != -1
return np.all(dshp[fix_dims] == gshp[fix_dims])
def has_time_axis(xdata, grid):
......
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