We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1834613 commit ee95774Copy full SHA for ee95774
src/sk_utils.jl
@@ -71,7 +71,7 @@ Parameters
71
Objects that will be checked for consistent length.
72
"""
73
function check_consistent_length(arrays...)
74
- nuni = nunique([size(X, 1) for X in collect(filter(x->x!=nothing, arrays))])
+ nuni = nunique([size(X, 1) for X in filter(x->x!=nothing, collect(arrays))])
75
if nuni > 1
76
throw(ArgumentError("Found arrays with inconsistent numbers of samples: $nuni"))
77
end
0 commit comments