Skip to content

Commit ee95774

Browse files
committed
Fix filter call
1 parent 1834613 commit ee95774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sk_utils.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Parameters
7171
Objects that will be checked for consistent length.
7272
"""
7373
function check_consistent_length(arrays...)
74-
nuni = nunique([size(X, 1) for X in collect(filter(x->x!=nothing, arrays))])
74+
nuni = nunique([size(X, 1) for X in filter(x->x!=nothing, collect(arrays))])
7575
if nuni > 1
7676
throw(ArgumentError("Found arrays with inconsistent numbers of samples: $nuni"))
7777
end

0 commit comments

Comments
 (0)