Skip to content

Commit

Permalink
Fixed a dimension issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ruxandra-valcu committed Dec 6, 2023
1 parent cb6e1bf commit 42bf1c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion echopype/mask/shoal.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,6 @@ def _weill(
).compute()
dask_mask = da.asarray(dask_mask, allow_unknown_chunksizes=False)

mask.values = dask_mask
mask.values = dask_mask.compute()

return mask

0 comments on commit 42bf1c1

Please sign in to comment.