Skip to content

Commit

Permalink
fix detect_unbound_args test error on 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Abbott committed Jan 12, 2021
1 parent e991b7b commit 9eaf1c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stack.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function LazyStack.rewrap_like(A, a::NamedTuple)
end

# tuple of arrays
function LazyStack.stack(x::AT) where {AT <: Tuple{Vararg{KeyedArray{T,IN}}}} where {T,IN}
function LazyStack.stack(x::Tuple{Vararg{<:KeyedArray}})
KeyedArray(LazyStack.stack(map(parent, x)), stack_keys(x))
end

Expand Down

0 comments on commit 9eaf1c3

Please sign in to comment.