Skip to content

Commit

Permalink
Fix alphabet
Browse files Browse the repository at this point in the history
  • Loading branch information
goruha committed Nov 23, 2024
1 parent 585264e commit 10142d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/foapy/ma/alphabet.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,4 @@ def alphabet(X) -> np.ma.MaskedArray:

result_mask = np.full_like(unique_mask, False)
result_mask[perm[unique_mask]] = True
return X[result_mask]
return ma.getdata(X[result_mask])

0 comments on commit 10142d4

Please sign in to comment.