diff --git a/src/RecoPlans/Serialization.jl b/src/RecoPlans/Serialization.jl index 02123ba..08d92d2 100644 --- a/src/RecoPlans/Serialization.jl +++ b/src/RecoPlans/Serialization.jl @@ -110,7 +110,7 @@ function loadPlanValue(t::UnionAll, value::Dict, modDict) return fromTOML(specializeType(t, value, modDict), value) end end -function loadPlanValue(::Type{Vector{<:T}}, value::Vector, modDict) where {T} +function loadPlanValue(::Type{Vector{<:T}}, value::Vector{Dict}, modDict) where {T} result = Any[] for val in value type = modDict[val[MODULE_TAG]][val[TYPE_TAG]]