Skip to content

Commit

Permalink
Fixed an array issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ruxandra-valcu committed Dec 6, 2023
1 parent 0c6e4bb commit e24a01e
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 e24a01e

Please sign in to comment.