Skip to content
Snippets Groups Projects
Commit 9ee20aa8 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

fix(assoc): set correct dimension

parent 8bb8f9c0
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ def validate_association(
if association.ndim < 3:
# Reshape into 3-D array for broadcasting if neded
association = np.stack(
(association[:, [0, 1]], association[:, [0, 2]]), axis=2
(association[:, [0, 1]], association[:, [0, 2]]), axis=1
)
# Compare existing association with available indices
......
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