Skip to content

Commit bcbab3b

Browse files
anthonyanthony
authored andcommitted
allow for different int types in tuples passed to selectcols
1 parent 550656c commit bcbab3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interface/data_utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ end
132132

133133
function project(
134134
t::NamedTuple,
135-
indices::NTuple{<:Any,<:Integer},
135+
indices::Tuple{<:Any,Vararg{<:Integer}},
136136
)
137137
return NamedTuple{tuple(keys(t)[[indices...]]...)}(tuple([t[i] for i in indices]...))
138138
end

0 commit comments

Comments
 (0)